Linux error file 'boot_grub_i386-pc_normal.mod not found如何解决?
程序员文章站
2022-04-22 21:01:51
1、问题描述
a、安装完Linux mint之后,系统无法启动了,自动进入到了grub rescue命令行中 b、正常进入grub之后,Linuxmint可正常启动,而win10则不能启动,...
1、问题描述
a、安装完Linux mint之后,系统无法启动了,自动进入到了grub rescue命令行中 b、正常进入grub之后,Linuxmint可正常启动,而win10则不能启动,会自动跳到grub界面
2、解决方案
a、grub rescue问题解决
注意:如果/boot分区为单独分区,则不用加/boot/直接grub即可
1、在grub rescue界面输入ls命令,查看磁盘,及分区相关信息 2、如果知道Linux分区在那个分区,可以使用下面命令进入grub界面
grub rescue>set root=(hd0,msdos7) grub rescue>set prefix=(hd0,msdos7)/grub grub rescue>insmod /grub/normal.mod # 或者可以直接使用下面命令 grub rescue>insmod (hd0,msdos7)/grub/i386-pc/normal.md # 如果没有问题,执行下面命令进入grub界面 grub rescue>normal
3、如果不知道可以使用下面步骤来尝试找到Linux的boot所在分区,然后重复步骤2
# /boot为单独分区的情况下 grub rescue>ls (hd0,X)/boot/grub # 否则执行下面命令,有可能为grub2,使用Linux live CD进入系统,也可以查看相关信息 grub rescue>ls (hd0,X)/grub
b、win10无法正常启动问题解决
1、进入Linux系统后,编辑/etc/grub.d/40_custom文件
menuentry "Windows 10 Custom" { set root=(hd0,1) ntldr /bootmgr boot }
2、更新grub相关信息
sudo update-grub
3、重启测试
选择自己刚刚添加的Windows 10 Custom
sudo reboot
上一篇: 插满128GB!技嘉Z390/C246主板支持单条32GB内存:仅九代酷睿
下一篇: 哥们,牛掰啊
推荐阅读
-
Linux使用vim编辑文件保存时报E514:write error (file system full?)问题解决
-
Linux error file 'boot_grub_i386-pc_normal.mod not found如何解决?
-
Linux内核编译时出现fatal error: openssl/opensslv.h: No such file or directory错误的解决办法
-
Linux内核编译时出现fatal error: openssl/opensslv.h: No such file or directory错误的解决办法
-
Linux系统下挂接ntfs盘时总提示module fuse not found如何解决?
-
MySQL启动ERROR! MySQL server PID file could not be found的解决办法
-
Linux使用vim编辑文件保存时报E514:write error (file system full?)问题解决
-
解决LNMP(Linux、Nginx、MySQL、PHP7)File not found 错误、404错误
-
linux 下配置PHP mysql时,在启动/usr/local/mysql/bin/mysqld_safe &报错Operating system error number 13 in a file operation.解决方案
-
linux 下配置PHP mysql时,在启动/usr/local/mysql/bin/mysqld_safe &报错Operating system error number 13 in a file operation.解决方案