- MBR(引导程序grub)丢失(dd if=/dev/zero of=/dev/sda bs=446 count=1)删掉MBR
1)进入救援模式
2)chroot /mnt/sysimage 把真正的根挂上
3)开始修复grub,把grub装到硬盘上。 grub2-install /dev/sda
安装完成之后,2次exit,会自动重启。
dd if=/dev/sda of=MBR bs=512 count=1 #备份MBR
dd if=MBR of=/dev/sda #恢复MBR
2. 引导程序的配置文件丢了(/boot/grub2/grub.cfg)
grub> set root=hd0,msdos1 grub> linux16 /boot/vmlinuz-###### root=/dev/sda1 ro grub> initrd16 /boot/initramfs-####### grub> boot
# grub2-mkconfig > /boot/grub2/grub.cfg #用此命令生成新的引导配置文件
over
3. 内核和驱动丢失
进救援模式,强制重新安装内核。
4. root密码丢失
1)在引导菜单页面 按e键 找到linux16,把ro 后面的参数删掉,然后加上 rd.break
2)ctrl-x 继续启动,然后会被打断
3)此时系统真正的根是以只读的方式挂在/sysroot下
4) mount -o remount,rw /sysroot/ 重新挂载为可读写
5)chroot /sysroot/ 把真正的根挂回来
6) passwd命令修改密码
7)touch /.autorelabel #打标签
sync #硬盘同步
2次exit 系统会继续启动
over
时间: 2024-11-09 13:37:41