# dd if=/dev/cdrom of=nameofisofile
eg. # dd if=/dev/cdrom of =mycollection.iso
The if is for input file and the of for output file. There are lots of options for dd so check out the man page.
To mount the newly created image (as root) you can mount it as a normal device with the -o loop option:
# mount -o loop
No comments:
Post a Comment