centos 6/centos 7开机mbr/grub出现故障的修复方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 6/centos 7开机mbr/grub出现故障的修复方法相关的知识,希望对你有一定的参考价值。
CentOS 6:
当grub出现故障,但未重启,可以如下恢复
方法一:
[[email protected] ~]# dd if=/dev/sda of=/root/mbr.bak count=1 bs=512 #备份
[[email protected] ~]#dd if=/dev/zero of=/dev/sda count=1 bs=200 #破坏mbr扇区
[[email protected] ~]#sync
[[email protected] ~]# grub-install --root-directory=/ /dev/sda #恢复mbr
[[email protected] ~]# reboot
方法二:
[[email protected] ~]# grub
grub> root (hd0,0)
grub> setup (hd0)
grub> reboot
如果已经重启了系统,此时插入光盘(救援盘)在开机界面选择Rescue install或按(ESC->linux rescue #== Rescue install重启后的救援模式,然后依次选择
contunue
shell bash shell
chroot /mnt/sysimage
grub-install --root-direcoryt=/ /dev/sda
exit #退出shell
reboot #停掉光驱,重启正常进入系统
CentOS 7 mbr修复
[[email protected] ~]# dd if=/dev/sda of=/root/mbr.bak count=1 bs=512 #备份
[[email protected] ~]# dd if=/dev/zero of=/dev/sda count=1 bs=200 #破坏mbr扇区
[[email protected] ~]# sync
[[email protected] ~]# reboot
#插入光盘,依次选择如下
Troubleshooting
Rescue a CentOS system
<Enter>
1 <Continue>
2 <shell>
sh-4.2# grub2-install --root-directory=/mnt/sysimage /dev/sda
CentOS 7 grub修复(在修复mbr的基础上增加一个步骤)
sh-4.2# grub2-mkconfig -o /boot/grub2/grub.cfg
sh-4.2# exit
sh-4.2# reboot #成功启动系统,更多关于此项可参阅鸟哥的linux私房菜,说的很详细
以上是关于centos 6/centos 7开机mbr/grub出现故障的修复方法的主要内容,如果未能解决你的问题,请参考以下文章
CentOS 6.9 CentOS 7.4 自动安装系统 kickstart
各种官网系统镜像文件(Windows 7 ,Windows 10,Ubuntu 18.6,Centos 6.8 ,Centos 7.6 )