Skip to content

Instantly share code, notes, and snippets.

@duguying
Last active March 28, 2019 18:35
Show Gist options
  • Save duguying/b872680157c0bbe03560915cbf2b20b5 to your computer and use it in GitHub Desktop.
Save duguying/b872680157c0bbe03560915cbf2b20b5 to your computer and use it in GitHub Desktop.
in linux how to create a bootable iso image

if you have mkisofs/genisoimage and say your folder is named "ISOTMP"

genisoimage -r -V "ISO-LABEL" -cache-inodes -J -l \
  -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot \
  -boot-load-size 4 -boot-info-table -o NAME-OF-ISO.iso ISOTMP/

mkisofs -r -V "ISO-LABEL" -cache-inodes -J -l \
  -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot \
  -boot-load-size 4 -boot-info-table -o NAME-OF-ISO.iso ISOTMP/

if you have boot/isolinux folder do

mkisofs -r -V "ISO-LABEL" -cache-inodes -J -l \
  -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -no-emul-boot \
  -boot-load-size 4 -boot-info-table -o NAME-OF-ISO.iso ISOTMP/
@nimatrueway
Copy link

One step missing bro:

Make it bootable with isohybrid

sudo apt install syslinux-utils
sudo isohybrid output.iso

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment