如何在 Debian Jessie 机器上创建 UEFI ISO 映像?
当我在我的 Kubuntu 上使用 follow 命令时,一切正常
genisoimage -quiet -V "my-amd64" -J -R -r -l -cache-inodes -c isolinux/boot.cat -b isolinux/isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table -eltorito-alt-boot -e boot/grub/efi.img -no-emul-boot -o my-amd64.iso my-amd64/
isohybrid --uefi my-amd64.iso
但是当我在 Debian Jessie 上运行此命令时,出现以下错误:
genisoimage: option '-e' is ambiguous; possibilities: '--eltorito-boot' '--exchange' '--ethershare' '--exclude-list' '--exclude' '--eltorito-catalog' '--eltorito-alt-boot'
Usage: genisoimage [options] -o file directory ...
似乎 Kubuntu (15.04) 上的 genisoimage 和 Debian Jessie 没有相同的选项。在 Debian 上,genisomage 不支持 UEFI。
两个系统上的版本相同: genisoimage 1.1.11
但我必须在 Debian Jessie 上创建 ISO 映像。有什么解决方法吗?