New CD Jewel Case Template ready to Print !

cd-template-jewel-case-back-print-margin1 I’ve added two new documents to my CD Templates for Jewel Case in SVG. The new versions are a leaflet and a back cover with margin markers only. This version is designed for final printing: thanks to markers it’s easy to cut and fold the paper with high precision.

Published under a Creative Commons Attribution licence, SVG files are available in my document repository.

CD Burning commands

  • 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
    

    volid is the volume ID to be written into the master block;
    /tmp/cdrom-image.iso is the destination filename of the newly created ISO image;
    src is 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 .nrg CD image to standard ISO file:
    nrg2iso dvd-image.nrg dvd-image.iso