标签:blog root mod err 指定 文件 system 文件的 filesyste
grub rescue>root=(hd0,msdos8)
grub rescue>prefix=/boot/grub //grub路径设置
grub rescue>set root=(hd0,msdos8)
grub rescue>set prefix=(hd0,msdos8)/boot/grub
grub rescue>insmod normal //启动normal启动
grub rescue>normal
之后你就会看到熟悉的启动菜单栏了
4、进入命令行启动ubuntu
进入系统启动选项界面后还是进不去,
因为你还没有真正的修改grub,这个要到ubuntu里修改
进入系统启动项界面后,按C进入命令行模式
grub >set root=hd0,msdos8
grub >set prefix=(hd0,msdos8)/boot/grub
grub >linux /vmlinuz-xxx-xxx root=/dev/sda8 //里边的xxxx可以按Tab键,如果有acpi问题,在最后加一句acpi=off
grub >initrd /initrd.img-xxx-xxx
grub >boot
这样就可以进入了
5、进入ubuntu修复grub
在终端里运行 sudo update-grub
sudo grub-install /dev/sda
6、重启,搞定!!
注:我当时只是修改了1~3步骤,然后在菜单栏就可以进入系统了,且一切正常。
可惜,在重启时,系统就只有一个光标在左上角不停的闪,咋也进不了系统。后来开机按F2,开机启动项改为硬盘启动就好了
转自:https://www.cnblogs.com/jins-note/p/9513335.html
标签:blog root mod err 指定 文件 system 文件的 filesyste
原文地址:https://www.cnblogs.com/ashjo009/p/12663886.html