GRUB:ISOファイルから起動

GRUB:ISOファイルから起動

Fedora 32 に次の /etc/grub.d/40_custom ファイルがあります。

#!/usr/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 "Start Fedora-KDE-Live 33" --class fedora {
 set isofile="/Fedora-KDE-Live-x86_64-33-1.2.iso"
 loopback loop (lvm/fedora-home)/sergio/Descargas/Distros$isofile
 linuxefi (loop)/isolinux/vmlinuz iso-scan/filename=${isofile} root=live:CDLABEL=Fedora-KDE-Live-33-1-2  rd.live.image
 initrdefi (loop)/isolinux/initrd.img
 }

数年前はこの設定を使用していましたが、今は機能しません。対応するグラブエントリを選択すると、画面が黒く変わり(エラーはまったく表示されません)、再起動して別のグラブエントリを選択する必要があります。

注:パラメータを含めてもrd.live.debug=1何も変わりません。 dracutはlvmモジュールが含まれていることを伝えます。

lsinitrd -m | grep lvm
lvm

私のカスタマイズファイルに何か間違っているか欠けている部分がありますか?

ベストアンサー1

おすすめ記事