USBスティックを(grub2)マルチブートとしてインストールしようとしていますが、Windowsインストーラの起動に問題があります。 Arch Linuxも機能しません。 KDEネオンだけがすべてうまくいきます。
私は「iso」ファイルのためにWindowsを好みます。
USBフラッシュドライブで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を解凍してUSBドライブにコピーしました。
グラップ.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
}