Slackware 13.1 - Recording CD and DVD from the command line
===========================================================

Public domain
********************************************************************************                                                                      
### Data CD

    mkisofs  -l -R -J -o image.iso -V imgvol ./cd-dir
    cdrecord -v -eject -multi speed=16 -dev ATAPI:/dev/hdd -data image.iso

********************************************************************************                                                                      
### Video CD

    vcdimager -v -l "Million Dollar Baby - 1" -b 1.bin -c 1.cue 1.mpg
    cdrdao write --eject --speed 8 --device /dev/hdd 1.cue

********************************************************************************                                                                      
### DVD

    dd if=/dev/dvd of=image.iso bs=2048
    ddrescue -vn /dev/dvd DVD.iso DVD.log

    growisofs -speed=1 -Z /dev/dvd=image.iso
    growisofs -dvd-compat -Z /dev/dvd=image.iso

    mkisofs -dvd-video -o image.iso -graft-points /mnt/cdrecorder/
    # ~/input-dir/ contains VIDEO_TS and AUDIO_TS directories
    mkisofs -dvd-video -udf -o image.iso '~/input-dir/'

********************************************************************************                                                                      
_BY: Pejman Moghadam_  
_TAG: cd, dvd, mkisofs, cdrecord, vcdimager, cdrdao, ddrescue, growisofs_  
_DATE: 2011-06-30 22:46:17_