Changing Hostname on Linux Oktober 21, 2008
Posted by Tyo in Linux.Tags: change linux hostname, hostname, Linux
1 comment so far
This post is only a reminder for me on “how to change Hostname in Linux”. Since I play a lot with VMWARE, and I already have the Linux OS template, so i don’t have to do linux installation all the time whenever i need to do new Oracle installation, just change the hostname and ip address and those Linux OS template is ready to use.
automatic startup and shutdown for oracle database in Linux April 18, 2007
Posted by Tyo in Linux, Oracle.12 comments
copy this code to a file with .sh extension then move the file to your /etc/init.d then create link in your rc5.d and rc3.d so that your oracle can start and shutdown automatically when you starting up and shutdown your Linux OS. (lagi…)
Repairing Linux FileSystem April 18, 2007
Posted by Tyo in Linux.add a comment
this is the step that i done yesterday when my Centos fail to boot because of electricity problem. this is for checking file system concurrency when ask by the system.
fsck /dev/sda1
please be sure to specify file system
fsck -t ext3 /dev/sda1 or
fsck.ext3 /dev/sda1
answer y for all question that came up, tryto use :
fsck -y /dev/sda1
once it has finished, remount file system : mount /usr/u02
read man fsck for further information.