首页 > 代码库 > grub 2 no such partition
grub 2 no such partition
笔记本是windows7 + centos7 双系统,因为在windows7中删了一个分区,所以Linux分区号都减1。导致grub找不到分区。
1.PE修复 EasyBCD引导
2.grub修复
因为安装centos时,/boot与/没有分开(这里不得不吐槽centos7的安装光盘,如果安装时也发现将/boot分开会得到一个1M的分区,就所有的分区建好以后删除/boot分区即可安装),我的/是最后一个分区本来是(hd0,13)现在变成(hd0,12)了。
那么系统启动后,执行
grub rescue>root=(hd0,12)
grub rescue>prefix=/boot/grub
grub rescue>set root=(hd0,12)
grub rescue>set prefix=(hd0,12)/boot/grub
grub rescue>insmod normal
rescue>normal case 1:这样就进入了启动菜单,centos 7有个rescue进入之后,执行grub2-install /dev/sda即可
case 2:按c进入命令行模式
sh:grub>set root=(hd0,x)
sh:grub>set prefix=(hd0,x)/boot/grub
sh:grub>linux /boot/vmlinuz-xxx-xxx root=/dev/sdax
sh:grub>initrd /boot/initrd.img-xxx-xxx
sh:grub>boot
内核版本号 -xxx-xxx可以按Tab键查看后再手动补全
启动后
sudo update-grub2
reboot
grub 2 no such partition