我正在尝试将 USB 记忆棒安装为 (grub2) 多重引导,但在引导 Windows 安装程序时遇到问题。 Arch Linux 也不起作用,只有 KDE neon 一切正常。
我更喜欢 Windows 作为“iso”文件。
有没有办法在 U 盘上运行 grub-mkconfig?
USB记忆棒:
fdisk -l /dev/sdb && lsblk -pf /dev/sdb
Disk /dev/sdb: 7.48 GiB, 8021606400 bytes, 15667200 sectors
Disk model: USB storage device
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: gpt
Disk identifier: 0000-UUID-0000
Device Start End Sectors Size Type
/dev/sdb1 2048 206847 204800 100M EFI System
/dev/sdb2 206848 15667166 15460319 7.4G Microsoft basic data
NAME FSTYPE LABEL UUID FSAVAIL FSUSE% MOUNTPOINT
/dev/sdb
├─/dev/sdb1 vfat EFI 1111-UUID-1111
└─/dev/sdb2 ntfs BOOT 2222-UUID-2222
我按照中所述安装了 USB 记忆棒GNU GRUB 手册
grub-install --efi-directory=/mnt/EFI --boot-directory=/mnt/BOOT --removable
我已解压 Windows10.iso 并将其复制到 U 盘上。
grub.cfg:
search.fs_uuid 2222-UUID-2222 root hd0,gpt1
set prefix=($root)'/grub'
configfile $prefix/grub.cfg
menuentry 'Windows 10' --class win10 {
search --fs-uuid --no-floppy --set=root 2222-UUID-2222
chainloader (${root})/win10/bootmgr.efi
}
menuentry "KDE neon GNU/Linux" ---calss neon {
set isofile="/iso/KDEneon.iso"
loopback loop (${root})$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject
initrd (loop)/casper/initrd
}
- - 编辑 - -
我将“win10”文件夹的内容移至“/”,现在 Windows 安装程序将使用以下字符串启动:
search.fs_uuid 2222-UUID-2222 root hd0,gpt1
set prefix=($root)'/grub'
configfile $prefix/grub.cfg
menuentry 'Windows 10' {
chainloader (${root})/efi/boot/bootx64.efi
}