标签:
Ubuntu系统启动失败情况,系统将会进入grub rescue模式,电脑上出现如下提示符:
grub rescue>
首先,执行命令 ls,查看当前硬盘。可能出现的结果如下:
(hd0,1),(hd0,5),(hd0,3),(hd0,2)
然后查找上面的所有分区,找到boot文件夹所在的位置,具体操作方式:依次执行命令
grub rescue>ls (hd0,X)/
其中,X代表上述命令中的1,2,3,5。将会列出每种分区下的文件和目录。
如果其中分区X存在boot目录,则进行如下操作
grub rescue>set root=(hd0, X) # 设置根目录 grub rescue>set prefix=(hd0, X)/boot/grub #设置grub目录,如果是boot单独分区,上述命令应该变成set prefix=(hd0, X)/grub grub rescue>set vmlinuz=/vmlinuz ># 设置vmlinuz grub rescue>set initrd=/initrd # 设置initrd grub rescue>insmod normal grub rescue>normal # 进入正常的启动界面
应该就可以进入熟悉的图形化启动界面了~
需要注意的是,有的介绍上说grub rescue的方式如下:
grub rescue>set root=(hd0,5) grub rescue>set prefix=(hd0,5)/boot/grub grub rescue>insmod /boot/grub/normal.mod grub rescue>normal
但是在作者的操作过程中,上述命令
grub rescue>insmod /boot/grub/normal.mod
不可行。参考连接:http://forum.ubuntu.org.cn/viewtopic.php?f=139&t=348503
进入Ubuntu,在Ubuntu系统下执行操作
sudo update-grub sudo grub-install /dev/sda
标签:
原文地址:http://www.cnblogs.com/maco/p/5067398.html