码迷,mamicode.com
首页 > 其他好文 > 详细

centos 6/centos 7开机mbr/grub出现故障的修复方法

时间:2018-07-26 18:37:49      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:linu   tun   res   详细   界面   ash   image   救援模式   增加   

CentOS 6:
当grub出现故障,但未重启,可以如下恢复
方法一:
[root@localhost ~]# dd if=/dev/sda of=/root/mbr.bak count=1 bs=512 #备份
[root@localhost ~]#dd if=/dev/zero of=/dev/sda count=1 bs=200 #破坏mbr扇区
[root@localhost ~]#sync
[root@localhost ~]# grub-install --root-directory=/ /dev/sda #恢复mbr
[root@localhost ~]# reboot
方法二:
[root@localhost ~]# 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修复
[root@localhost ~]# dd if=/dev/sda of=/root/mbr.bak count=1 bs=512 #备份
[root@localhost ~]# dd if=/dev/zero of=/dev/sda count=1 bs=200 #破坏mbr扇区
[root@localhost ~]# sync
[root@localhost ~]# 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出现故障的修复方法

标签:linu   tun   res   详细   界面   ash   image   救援模式   增加   

原文地址:http://blog.51cto.com/10201808/2150630

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!