标签:style blog http color os 使用 sp strong on
grub rescue>ls
会罗列所有的磁盘分区信息:
(2) 然后依次调用如下命令: X表示各个分区号码
如果/boot没有单独分区,用以下命令:
grub rescue>ls (hd0,X)/boot/grub
如果/boot单独分区,则用下列命令:
grub rescue>ls (hd0,X)/grub
(3)如果找到了正确的grub目录,将grub的两部分关联起来,方法如下:
以下是/boot没有单独分区的命令:
grub rescue>set root=(hd0,5) grub rescue>set prefix=(hd0,5)/boot/grub grub rescue>insmod /boot/grub/i386/normal.mod
以下是/boot 单独分区的命令:
grub rescue>set root=(hd0,5) grub rescue>set prefix=(hd0,5)/grub grub rescue>insmod /grub/i386/normal.mod
然后执行:
grub rescue>normal
sudo update-grub sudo grub-install /dev/sda
标签:style blog http color os 使用 sp strong on
原文地址:http://www.cnblogs.com/jostree/p/4167644.html