Tag: mkisofs

Create ISO Image of a Folder

Create an iso image of a directory mkisofs -J -allow-leading-dots -R -V “Label CD” -iso-level 4 -o ./cd.iso data_cd

Create Compressed Image

Create a compressed iso image of cdrom on disk mkisofs /dev/cdrom | gzip > cd_iso.gz

Create a Folder’s ISO image

How to make an ISO image from contents of a directory? mkisofs -V label-name -r directory-name > iso-image.iso [tags]iso,image,folder,linux,mkisofs[/tags]