0
GRUB 2停止双启动Windows 8
我拥有一台带有两个硬盘的笔记本电脑。 Windows 8.1在第一个磁盘上以UEFI模式安装,我最近在第二个磁盘上安装了Gentoo。现在我希望能够在GRUB2菜单中选择启动时的操作系统。我按照列出的说明操作 这里 并且似乎为双启动正确配置了一切。这是自定义菜单条目 40_custom: # Win8.1 uefi boot x64 if [ "${grub_platform}" == "efi" ]; then menuentry "Microsoft Windows 8.1 UEFI-GPT" { insmod part_gpt insmod fat insmod search_fs_uuid insmod chain search --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 7CEB-5B77 chainloader /EFI/Microsoft/Boot/bootmgfw.efi } fi 但是当我启动笔记本电脑并选择“Windows 8.1”条目时,GRUB2会输出以下错误: error: no such device: 7CEB-5B77. …