Reply to comment

Creating ISO files of CD/DVD media or directories

I would like to summarize how to create ISO files of CD/DVD media or directories.

Creating an ISO image of a CD/DVD disc

First, make sure that your disc is currently *not* mounted.

$ sudo umount /dev/cdrom

Then, create an ISO image disc.iso of the disc by dd command:

$ dd if=/dev/cdrom of=disc.iso bs=1024

Creating an ISO image of a directory

To convert a directory dir into an ISO image dir.iso, use mkisofs command as follows:

$ mkisofs -r -o dir.iso dir

Reply

The content of this field is kept private and will not be shown publicly.
CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.