grub 中未找到 windows 10 映像

grub 中未找到 windows 10 映像

我在从 grub 启动 Windows 10 时遇到问题。当我尝试执行此操作时,收到以下消息:

/EndEntire
file path: /ACPI....../File(bootmgfw.efi)/EndEntire
error: cannot load image.

然后我用谷歌搜索并找到了这个已解决的问题,告诉您编辑该grub.cfg文件。

编辑/boot/grub/grub.cfg

寻找

### BEGIN /etc/grub.d/30_os-prober ###

menuentry 'Windows 10 (loader) (on /dev/sdXX)'

chainloader +1

ntldr /bootmgr

当我尝试应用该错误时,除了原始错误之外,还出现了此错误

error: can't find command `ntldr'.

这可能是因为我的grub.cfg文件看起来不像链接中的文件,但我不知道如何调整解决方案。

由于grub.cfg文件很长,这是其他解决方案中提到的部分。

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/sda2)' --class windows --class     os $menuentry_id_option 'osprober-efi-4CBE-1366' {
    insmod part_gpt
    insmod fat
    set root='hd0,gpt2'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-    efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  4CBE-1366
    else
      search --no-floppy --fs-uuid --set=root 4CBE-1366
    fi
        chainloader /EFI/Microsoft/Boot/bootmgfw.efi
    }
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

完整文件可以在这里找到这里如果需要的话。

我尝试更新 grub,但没什么变化。

编辑:

终端输出

kajsa@Yoga ~ $ sudo update-grub
[sudo] password for kajsa: 
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.4.0-53-generic
Found initrd image: /boot/initrd.img-4.4.0-53-generic
Found Windows Boot Manager on /dev/sda2@/EFI/Microsoft/Boot/bootmgfw.efi
Adding boot menu entry for EFI firmware configuration
done

有什么建议么?

相关内容