Grub UEFI PXE 启动 Parted Magic 2013

Grub UEFI PXE 启动 Parted Magic 2013

我已经使用 设置了 Ubuntu Xenial 服务器dnsmasq。我将grubnetx64.efi.signed其用作启动映像,并且已经有一些功能在运行。我几乎可以使用 作为boot=live选项来启动任何基于 Debian 的系统。例如,clonezilla 正在使用以下文件:

# clonezilla menuentry "Clonezilla" { location=$configpath/clonezilla_20170220-yakkety echo "Loading Clonezilla... may take around 2min" bootoptions="boot=live username=user union=overlay config components quiet noswap edd=on nomodeset nodmraid locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch=no net.ifnames=0 nosplash noprompt fetch=$tftpserver/$location/filesystem.squashfs" linux $location/vmlinuz $bootoptions initrd $location/initrd.img }

和 Debian 一起:

# debian 8 standard menuentry "Debian 8 Standard" { location=$configpath/debian_8.7.1_standard echo "Loading Debian 8... may take around 2min" bootoptions="boot=live components nomodeset fetch=$tftpserver/$location/filesystem.squashfs" linux $location/vmlinuz $bootoptions initrd $location/initrd.img }

我无法启动 Parted Magic 2013。我尝试过:

# pmagic menuentry "Partition Magic 2013" { iso=$configpath/pmagic/pmagic_2013_08_01.iso echo "Loading Partition Magic... may take around 2min" loopback loop $iso linux (loop)/pmagic/bzImage64 iso_filename=$iso boot=live nomodeset initrd (loop)/pmagic/initrd.img }

这需要很长时间才能加载,并且无法加载 SQFS 文件。

和:

# pmagic menuentry "Partition Magic 2013" { location=$configpath/pmagic echo "Loading Partition Magic... may take around 2min" bootoptions="edd=on vga=normal" linux $location/bzImage64 $bootoptions initrd $location/initrd.img,$location/PMAGIC_2013_11_11.SQFS.cgz }

这再次导致无法使用 SQFS 文件。

有人成功启动过非基于 Debian 的发行版,特别是从 Grub PXE Uefi 服务器启动 pmagic 吗?

相关内容