ubuntu出现grub rescue

出现grub rescue的解决方法:

1 grub rescue>ls

罗列所有硬盘分区信息,如

(hd0) (hdo,msdos3) (hd0,msdos2)(hd0,msdos1) 

我另外加装了一块固态硬盘,所以我的后面还有(hd1)......

2 grub rescue>ls (hd0,msdos3)/boot/grub

linux distrubution差异可能会找不到grub,路径不一样

3 我的linux安装在(hd0,msdos3),所以我在该分区找到了我的grub,显示了文件夹的内容

4  grub rescue>set root=(hd0,msdos3)

    grub rescue>set prefix=(hd0,msdos3)/boot/grub

    grub rescue>insmod normal

    grub rescue>normal

至此,开机已经完成,

但是此时进行重启,还会出现这种情况,所以要对grub进行修复

sudo update-grub

sudo grub-install /dev/sda

sda是硬盘号,不能指定硬盘分区,如sda1,sda5是不正确的


你可能感兴趣的:(ubuntu出现grub rescue)