启动流程

启动流程

# cd /boot/grub
# grub-md5-crypt 
# vim grub.conf

default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
#hiddenmenu
password  --md5 $1$qGKbI1$Vog5rGOD7A3V1ZfrpSVrK/

title Red Hat Enterprise Linux Server (2.6.18-194.el5)
        root (hd0,0)
        kernel /vmlinuz-2.6.18-194.el5 ro root=LABEL=/ rhgb quiet
        initrd /initrd-2.6.18-194.el5.img

title Windows XP
        root (hd0,0)
        kernel /vmlinuz-2.6.18-194.el5 ro root=LABEL=/ rhgb quiet
        initrd /initrd-2.6.18-194.el5.img

# cp initrd-2.6.18-194.el5.img  /test
# cd /test
# file initrd-2.6.18-194.el5.img 
# mv initrd-2.6.18-194.el5.img  initrd-2.6.18-194.el5.img.gz
# file initrd-2.6.18-194.el5.img 
# cpio -i < initrd-2.6.18-194.el5.img 
# ls
--------------
# cd /etc/rc.d
# cd rc3.d
# ls

# ls /etc/init.d

# vim /etc/rc.local
touch /var/lock/subsys/local
cp  /etc/passwd /test/
tar zcvf /test/etc.tar.gz  /etc

-----------------------

# cd /test
# touch loginfile
# chmod 777 loginfile

# vim /etc/profile
添加
echo "/etc/profile" >> /test/loginfile

# vim /etc/bashrc
添加
echo "/etc/bashrc" >> /test/loginfile

# vim /root/.bashrc 
添加
echo "/root/.bashrc" >> /test/loginfile

# vim /root/.bash_profile 
添加
echo "/root/.bash_profile"  >> /test/loginfile

# useradd tom

# vim /home/tom/.bash_profile 
添加
echo "/home/tom/.bash_profile" >> /test/loginfile

# vim /home/tom/.bashrc
添加
echo "/home/tom/.bashrc" >> /test/loginfile

# watch -n 1 cat /test/loginfile

//让同桌ssh远程访问自己的机器, 第一次用root,第二次用tom 登录 ,看 logfile文件的变化。

-----------------------
troubleshooting

# dd if=/dev/sda  of=/test/MBR bs=512 count=1

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(启动流程)