|
发表于 2006-2-9 07:40:45
|
显示全部楼层
grub已经比较成熟了,我感觉如果操作正确的话极少会出错。
仔细注意红色的几段:
grub> root (hd0,5)
Filesystem type is reiserfs, partition type 0x83
grub> setup (hd0,0)
Checking if "/boot/grub/stage1" exists... yes
Checking if "/boot/grub/stage2" exists... yes
Checking if "/boot/grub/reiserfs_stage1_5" exists... yes
Running "embed /boot/grub/reiserfs_stage1_5 (hd0,0)"... failed (this is not fatal)
Running "embed /boot/grub/reiserfs_stage1_5 (hd0,5)"... failed
Running "install /boot/grub/stage1 (hd0,0) /boot/grub/stage2 p /boot/grub/menu.lst "... succeeded
Done.
──────────────────────────────
解决问题的办法无疑是问最合适的问题:
1、(hd0,5)是/boot吗?如果没有单独分出/boot,(hd0,5)是根分区吗?
2、我是想把grub安装在(hd0,0)上吗?(请注意(hd0,0)是第一个分区,而不是硬盘,就是说你在试图安装grub到第一个分区的MBR上,而非硬盘的MBR上。也就是说在执行了这样的操作以后,MBR上的引导信息仍然是陈旧的过去、安装的。
3、如果以上皆没有问题,那么在安装的时候boot分区挂载了么?(不确定是不是要,或者不能要?) |
|