Advertisement
tolikpunkoff

createiso-gfd

Feb 17th, 2019
867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.22 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if [ -z "$1" ]; then
  4.     LABEL="bootable"
  5. else
  6.     LABEL=$1
  7. fi
  8.  
  9. echo "Create ISO..."
  10.  
  11. mkisofs -o disk.iso -b grldr -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -J -R -V $LABEL iso_root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement