Linux的分区已经被你从Windows中删除,系统启动后停在“grub>”提示符处。
---在“grub>”提示符后输入:“rootnoverify (hd0,0)” 回车。 //将第一块硬盘(hd0)的第一个分区(0)设为根分区/root设备,但不加载文件系统。
---在“grub>”提示符后输入:“chainloader +1” 回车。//将启动引导权转交给当前分区的首扇区(Windows系统所在分区的首扇区)。
另附grub简易解读:
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd0,7)
# kernel /boot/vmlinuz-version ro root=/dev/sda8
# initrd /boot/initrd-version.img
#boot=/dev/sda
default=1
timeout=10
splashimage=(hd0,7)/boot/grub/splash.xpm.gz
hiddenmenu
title RHEL5.5-2 (2.6.18-194.el5)
root (hd0,7)
kernel /boot/vmlinuz-2.6.18-194.el5 ro root=LABEL=/1 rhgb quiet
initrd /boot/initrd-2.6.18-194.el5.img
title RHEL5.5-1
rootnoverify (hd0,5)
chainloader +1
title Windows7
rootnoverify (hd0,0)
chainloader +1
文件解读:
最上面一个系统是最后安装的linux系统;
第二个系统是稍前安装的linux系统;
最后面一个是最先安装的windows系统。
如需修改启动文件grub的配置,则只能找到最后一个安装的系统,找它的配置文件进行修改。
default=n,n从0开始计数,0是最上面一个系统,依次类推。
文章评论