GRUB 菜单中的 Windows 选项消失

GRUB 菜单中的 Windows 选项消失

我最近设置了 Windows 11 和 Debian 的双启动配置,并且我已经使用它一段时间了,没有任何问题。但是,我遇到了一个问题,Windows 11 选项从 GRUB 启动菜单中消失了。我已经尝试使用“sudo update-grub”,但没有成功。我正在寻找帮助,以了解为什么会发生这种情况以及如何修复它,以便 Windows 选项再次显示在 GRUB 菜单中。

https://i.stack.imgur.com/c5BwV.png

答案1

感谢大家的帮助。问题已解决。已添加GRUB_DISABLE_OS_PROBER=false/etc/default/grub文件并执行update-grub

答案2

正如本视频中提到的,您可以在 Grub 文件 (/etc/grub.d/40_custom) 中手动添加 Windows 条目。

https://www.youtube.com/watch?v=tyVRfVxiD08

menuentry "Windows" --class windows --class os {
    search --fs-uuid --no-floppy --set=root $UUID
  chainloader (${root})/EFI/Microsoft/Boot/bootmgfw.efi
}

将 $UUID 替换为sudo blkid /dev/nvme0n1p1

相关内容