GRUB 始终以安全模式加载 Windows

GRUB 始终以安全模式加载 Windows

我在装有 Windows 10 的笔记本电脑上安装了 Fedora 31,GRUB 在启动时向我显示了不同的选项,当我选择 Windows 时,系统会启动但始终处于安全模式。我没有正常加载 Windows 10 的选项。

这是 GRUB Customizer 给出的启动顺序:

insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1  B0DE-B937
else
  search --no-floppy --fs-uuid --set=root B0DE-B937
fi
chainloader /EFI/Microsoft/Boot/bootmgfw.efi

这是 fdisk -l 命令的结果:

Device           Start        End    Sectors   Size Type
/dev/sda1         2048    1026047    1024000   500M EFI System
/dev/sda2      1026048    1107967      81920    40M unknown
/dev/sda3      1107968    1370111     262144   128M Microsoft reserved
/dev/sda4      1370112    2906111    1536000   750M Windows recovery environment
/dev/sda5      2906112 1406771199 1403865088 669,4G Microsoft basic data
/dev/sda6   1933588480 1937344511    3756032   1,8G Windows recovery environment
/dev/sda7   1937344512 1953523119   16178608   7,7G Windows recovery environment
/dev/sda8   1406771200 1408868351    2097152     1G Linux filesystem
/dev/sda9   1408868352 1933588479  524720128 250,2G Linux LVM

有人能帮我设置 GRUB 以正确加载 Windows 吗?谢谢

答案1

在 Windows 上按照以下步骤解决:

  1. 点击开始
  2. 键入msconfig(这将调出系统配置窗户)
  3. 前往引导标签
  4. 如果选中,则删除安全启动
  5. 点击申请进而好的
  6. 重启你的电脑

相关内容