-
List all CD devices:
1$ cdrdao scanbus
-
Blank a CD-RW:
1$ cdrdao blank --device ATA:0,1,0 --driver generic-mmc
-
Burn an ISO:
1$ cdrecord -v speed=8 dev=ATA:0,1,0 ./geexbox-0.98-fr.iso
-
Generate an ISO image of a CD-ROM:
1$ dd if=/dev/cdrom of=/tmp/cdrom-image.iso
-
Create an ISO from a local directory:
1$ mkisofs -R -r -l -J -V volid -o /tmp/cdrom-image.iso src
Where:
-
volidis the volume ID to be written into the master block; -
/tmp/cdrom-image.isois the destination filename of the newly created ISO image; -
srcis the temporary ISO directory containing the files and file structure you wish to have included in the ISO image.
-
-
Mount a local ISO image as if itβs a physical CD-Rom:
1$ mount -t iso9660 -o loop /tmp/cdrom-image.iso /media/cd-image/
-
Mount an UDF file system image:
1$ fuseiso -p dvd.img /media/dvd-image/
-
Convert a Neroβs proprietary
.nrgCD image to standard ISO file:1$ nrg2iso dvd-image.nrg dvd-image.iso