相关的Windows驱动安装是:
Disk /dev/sde: 465.8 GiB, 500107862016 bytes, 976773168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xe55015e8
Device Boot Start End Sectors Size Id Type
/dev/sde1 2048 975849471 975847424 465.3G 7 HPFS/NTFS/exFAT
/dev/sde2 975849472 976771071 921600 450M 27 Hidden NTFS WinRE
如何让 grub2 真正加载 Windows 10?
下列的这个答案, 我试过:
menuentry 'Windows 10' {
insmod part_gpt
insmod search_fs_uuid
insmod ntfs
insmod chain
search --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 343419363418FC94
chainloader (${root})/Windows/Boot/EFI/bootmgfw.efi
boot
我不断收到ntfs.mod not found
所有insmod
命令的错误,因此尝试删除它们。依然没有。
我的/etc/grub.d/40_custom
读物:
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry 'Microsoft Windows 10' {
set root='(hd4,1)'
chainloader +1
此操作失败,未检测到启动。
# same header as above.
search --no-floppy --fs-uuid --set=root '343419363418FC94'
chainloader /bootmgr
boot
由于未知文件系统和未检测到启动而失败。
# same header as above.
insmod part_gpt
insmod search_fs_uuid
insmod ntfs
insmod chain
search --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 343419363418FC94
chainloader (${root})/Windows/Boot/EFI/bootmgfw.efi
boot
此操作会失败,并显示未找到 ntfs.mod,后跟未知文件系统。
search --fs-uuid --set=root --hint-bios=hd4,msdos2 --hint-efi=hd4,msdos2 --hint-baremetal=ahci4,msdos2 6ACAB410CAB3D693
chainloader (${root})/Recovery/WindowsRE/boot.sdi
boot
尽管通过安装驱动器检查它是正确的路径,但由于找不到路径而失败。
答案1
遗憾的是,解决此问题的唯一方法是在 UEFI 模式下重新安装 Windows 10,然后在 UEFI 模式下重新安装 Fedora。然后,一些乱七八糟的加载顺序。最后,我让两个系统都工作了。
真是一团糟... :(