linux引导GRUB修复

Linux引导GRUB修复

硬盘调整分区后开机会出现进入救援模式

grub rescue>

可以使用的指令:

(1)set 查看环境变量,可以查看目前启动分区配置资料
(2)ls 查看分区
(3)insmod 加载模块
(4)root 指定用于启动系统的分区,在救援模式下设置grub启动分区    
(5)prefix 设定grub启动路径

具体操作步骤:

1.查看分区:grub rescue>ls或者find /boot/grub/grub.conf  //出现所有分区

2.寻找Linux分区:grub rescue>ls (hd0,gpt6)/  //如果是系统分区则出现/etc /var /opt /bin...,如果不是则出现unkmown filesysetm

3.修改启动配置:grub rescue>root=(hd0,gpt6)  //启动分区

        grub rescue>prefix=(hd0,gpt6)/boot/grub  //grub路径

        grub rescue>insmod normal  //启动normal启动

        grub rescue>normal  //启动

4.进入系统后打开终端进行更新GRUB配置文件(相当与保存):

sudo update-grub  //更行引导

linux引导GRUB修复

上一篇:linux相关


下一篇:多进程实现socket通信