Image 01 Image 02

Writing down a CD in linux :)

Posted on 13th April 2006 by Taggy
1

Not sure if manyhave tried it before .But ijus did today at my friends computer and it worked.

Its a little risky as u might call it, but definitely a thousand times better than running for a pirated version of Cd writing softwares.

* First create an ISO image from a CD

mkisofs -r -o cd_image private_collection/
$private_collection is a directory
* check if it was properly created .

mount -t iso9660 -o ro,loop=/dev/loop0 image/cdrom

* Finally recrding a cd

$ SCSI_BUS=0 # taken from listing 1 “scsibus0:”

$ SCSI_ID=6 # taken from listing 1 “TOSHIBA XM-3401″

$ SCSI_LUN=0

$ cdrecord -v speed=2 dev=$SCSI_BUS,$SCSI_ID,$SCSI_LUN -data cd_image


# same as above, but shorter:
$ cdrecord -v speed=2 dev=0,6,0 -data cd_image



1
Response to.. Writing down a CD in linux :)

divya posted on April 17th 2006

whats wrong with your font



Leave a reply...