マルチブートISO USBドライブを設定しようとしていますが、ISOファイルを起動するとエラーメッセージが表示されます。
私が知っている限り、ループバックデバイスは正しく実装されています。それ以外の場合、isoは起動しません。しかし、正しいパスが見つかりません。
なぜそうなのか理解できません。
ルーピングデバイスにはさらにオプションが必要な場合があり、GUBB2にはいくつかのモジュールが必要な場合があります。
1. 「KDE ネオン GNU/Linux(.iso)」が問題なく起動します。
2. 「Arch Linux (.iso)」は、次のエラーメッセージを表示します。
起動コマンドリストエラー
:対応するモジュールがありません。
続行するには任意のキーを押してください。
Enterキーを押すと、次のことが発生します
起動デバイスを待っています...
/dev/disk/by-label/ARCH_202211デバイスを30秒間待っています...
エラー: '/dev/disk/by-label/ARCH_202211'デバイスが30秒後に表示されませんでした。対話型プロンプトに戻ります
。
3. 「Windows 10(.iso)」にはそのファイルが見つかりません。
起動コマンドリストエラー
:対応するモジュールがありません。
エラー: '/efi/boot/bootx64.efi' ファイルが見つかりません。
続行するには任意のキーを押します。
isoを解凍してパーティションに直接コピーすると、次のコマンド(grub.cfg)を使用して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
}
私の設定
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
グラップ.cfg:
search.fs_uuid 2222-UUID-2222 root hd0,gpt2
set prefix=($root)'/grub'
configfile $prefix/grub.cfg
menuentry "KDE neon GNU/Linux ISO" {
rmmod tpm
set isofile="/KDEneon.iso"
loopback loop (${root})/$isofile
linux (loop)/casper/vmlinuz boot=casper apparmor=0 iso-scan/filename=$isofile noprompt noeject lang=en locale=de_DE.UTF-8
initrd (loop)/casper/initrd
}
menuentry "Arch Linux ISO" {
rmmod tpm
set isofile="/ArchLinux.iso"
loopback loop (${root})/$isofile
search --no-floppy --set=root --label ARCH_202211
linux (loop)/arch/boot/x86_64/vmlinuz-linux archisobasedir=arch archisolabel=ARCH_202211 iso-scan/filename=$isofile noprompt noeject lang=en locale=de_DE.UTF-8
initrd (loop)/arch/boot/intel-ucode.img (loop)/arch/boot/amd-ucode.img (${root})/arch/boot/x86_64/initramfs-linux.img
}
menuentry 'Windows 10 ISO' {
rmmod tpm
set isofile="/Windows10.iso"
loopback loop (${root})/$isofile
chainloader (loop)/efi/boot/bootx64.efi iso-scan/filename=$isofile noprompt noeject
}
menuentry 'Windows 10 Extracted' {
chainloader (${root})/efi/boot/bootx64.efi
}
#menuentry 'memtest' {
#
#}
menuentry 'UEFI Settings' --class uefi {
fwsetup
}
menuentry "Restart" --class reboot {
reboot
}
menuentry "Power Off" --class halt {
halt
}
- - 編集する - -
USBドライブにDDを含むArchLinux.isoをインストールしましたが、ドライブは次のとおりです。
sudo dd if=/home/anonymus/Downloads/ArchLinux.iso of=/dev/sdb status=progress
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: dos
Disk identifier: 0000-UUID-0000
Device Boot Start End Sectors Size Id Type
/dev/sdb1 * 64 1570815 1570752 767M 0 Empty
/dev/sdb2 1570816 1601535 30720 15M ef EFI (FAT-12/16/32)
NAME FSTYPE LABEL UUID FSAVAIL FSUSE% MOUNTPOINT
/dev/sdb iso9660 ARCH_202211 2022-11-01-13-53-46-00
├─/dev/sdb1 iso9660 ARCH_202211 2022-11-01-13-53-46-00 0 100% /mnt/ARCH_202211
└─/dev/sdb2 vfat ARCHISO_EFI 55DC-6BC5
Arch Linux grub.cfg
# Load partition table and file system modules
insmod part_gpt
insmod part_msdos
insmod fat
insmod iso9660
# Use graphics-mode output
insmod all_video
insmod font
if loadfont "${prefix}/fonts/unicode.pf2" ; then
insmod gfxterm
set gfxmode="auto"
terminal_input console
terminal_output gfxterm
fi
# Enable serial console
if serial --unit=0 --speed=115200; then
terminal_input --append serial
terminal_output --append serial
fi
# Set default menu entry
default=archlinux
timeout=15
timeout_style=menu
# GRUB init tune for accessibility
play 600 988 1 1319 4
# Menu entries
menuentry "Arch Linux install medium (x86_64, UEFI)" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' {
set gfxpayload=keep
search --no-floppy --set=root --label ARCH_202211
linux /arch/boot/x86_64/vmlinuz-linux archisobasedir=arch archisolabel=ARCH_202211
initrd /arch/boot/intel-ucode.img /arch/boot/amd-ucode.img /arch/boot/x86_64/initramfs-linux.img
}
menuentry "Arch Linux install medium with speakup screen reader (x86_64, UEFI)" --hotkey s --class arch --class gnu-linux --class gnu --class os --id 'archlinux-accessibility' {
set gfxpayload=keep
search --no-floppy --set=root --label ARCH_202211
linux /arch/boot/x86_64/vmlinuz-linux archisobasedir=arch archisolabel=ARCH_202211 accessibility=on
initrd /arch/boot/intel-ucode.img /arch/boot/amd-ucode.img /arch/boot/x86_64/initramfs-linux.img
}
if [ "${grub_platform}" == "efi" ]; then
if [ "${grub_cpu}" == "x86_64" ]; then
menuentry "UEFI Shell" {
insmod chain
search --no-floppy --set=root --label ARCH_202211
chainloader /shellx64.efi
}
elif [ "${grub_cpu}" == "i386" ]; then
menuentry "UEFI Shell" {
insmod chain
search --no-floppy --set=root --label ARCH_202211
chainloader /shellia32.efi
}
fi
menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' {
fwsetup
}
fi
menuentry "System shutdown" --class shutdown --class poweroff {
echo "System shutting down..."
halt
}
menuentry "System restart" --class reboot --class restart {
echo "System rebooting..."
reboot
}