Windows 10 在 grub 之后无法启动

Windows 10 在 grub 之后无法启动

我首先安装了 Windows 10,然后安装了 Ubuntu 19.02。Ubuntu 是使用 Rufus 创建的 USB 安装的。

显示了 GRUB,但是当我选择“Windows”时,grub 会再次加载。

我已经执行了bootinfoscript,你可以在这里(请忽略/dev/sdb磁盘信息,它仅包含旧的 Windows 安装)。

你能说出什么问题吗?

我的/dev/sda磁盘分区目前是:

Partition    Start Sector    End Sector  # of Sectors System
/dev/sda1           2,048     1,085,439     1,083,392 Windows Recovery Environment (Windows)
/dev/sda2       1,085,440     1,290,239       204,800 EFI System partition
/dev/sda3       1,290,240     1,323,007        32,768 Microsoft Reserved Partition (Windows)
/dev/sda4       1,323,008 1,298,163,711 1,296,840,704 Data partition (Windows/Linux)
/dev/sda5   1,298,163,712 1,310,162,943    11,999,232 Swap partition (Linux)
/dev/sda6   1,310,162,944 1,953,523,711   643,360,768 Data partition (Linux)

我当前的/boot/grup/grub.cfg相关窗口条目是:

menuentry 'Windows Boot Manager (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-efi-40A3-A42A' {
    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  40A3-A42A
    else
      search --no-floppy --fs-uuid --set=root 40A3-A42A
    fi
    chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}

您可以grub.cfg在以下位置找到完整的当前内容这里

相关内容