How to create an ISO image

In order to turn a CD/DVD into an .iso one can:

sudo umount /dev/cdrom

dd if=/dev/cdrom of=file.iso bs=1024

In order to turn a folder into an .iso one can:

mkisofs -r -o file.iso /location_of_folder/

Related posts:

Leave a Reply