- List all CD devices:
cdrdao scanbus
- Blank a CD-RW:
cdrdao blank --device ATA:0,1,0 --driver generic-mmc
- Burn an ISO:
cdrecord -v speed=8 dev=ATA:0,1,0 ./geexbox-0.98-fr.iso
- Generate an ISO image of a CD-ROM:
dd if=/dev/cdrom of=/tmp/cdrom-image.iso
- Create an ISO from a local directory:
mkisofs -R -r -l -J -V volid -o /tmp/cdrom-image.iso src
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:
mount -t iso9660 -o loop /tmp/cdrom-image.iso /media/cd-image/
- Mount an UDF file system image:
fuseiso -p dvd.img /media/dvd-image/
- Convert a Nero’s proprietary
.nrgCD image to standard ISO file:nrg2iso dvd-image.nrg dvd-image.iso
CD Burning commands
1