litaz 料理 grub2 ループバック

litaz 料理 grub2 ループバック

マルチブートUSBでgrub2ループバックを使用してslimazクッキングISOを起動しようとしています。

# /boot/grub/grub.cfg
insmod font
if loadfont /boot/grub/unicode.pf2 ; then
    insmod efi_gop
    insmod efi_uga 
    insmod gfxterm
    insmod vbe
    insmod vga
    set gfxmode=auto
    set gfxpayload=auto
    terminal_output gfxterm 
    if terminal_output gfxterm; then true ; else
        terminal gfxterm
    fi
fi

menuentry "Slitaz Cooking" {
    set isofile="/boot/slitaz-cooking.iso"
    loopback loop $isofile
    linux (loop)/boot/bzImage lang=en kmap=us isofrom=$isofile boot=live noeject noprompt root=/dev/null
    initrd (loop)/boot/rootfs.gz
}

screen=textそしてカーネルオプションを試してみましたscreen=1024x768x24が、利用可能なGUI/ターミナルに到達できませんでした。

ベストアンサー1

アイテムを追加したことはありませんが、アイテムは正しいようですisofrom=$isofile。 Asus Netbookから起動すると同じ問題が発生しますが、他のコンピュータでは起動時に発生しないことに言及したいと思います。そしてスタートアップは常にXで停止するのではなく、initramfsの周りで停止します。

別のコンピュータから起動してみてください。これは同じ問題があることを意味します。

おすすめ記事