From marioh@cs.ucr.edu Thu Feb 14 08:48:23 2002 Date: 13 Feb 2002 09:59:26 -0800 From: Marios Hadjieleftheriou To: Donghui Zhang Subject: Re: burn CD To copy into an image: cdrdao read-cd --device 0,0,0 file This will produce an image file "data.bin" and a cue file "file" To burn this image use: cdrdao write --device 0,0,0 --speed 8 file (I am not sure about the speed option, check it out!). You have to install cdrdao though in your home dir. To create an iso image use mkisofs. Create a folder with all the files needed to be in the image, lets say "cd_image". You can put soft links in there if you like, to make it easier. Then type: mkisofs -J -R -f -o cd.iso cd_image (the -f option is for follow symbolic links). To burn the image into the cd, use: cdrecord dev=0,0,0 speed=8 -data cd.iso You can create multi session disks by using the -multi flag if you like. To burn mp3s as an audio CD use mpg123 --cdr - file.mp3 > file.wav To convert the mp3s into wavs. Than use: cdrecord dev=0,0,0 speed=8 -pad -audio *.wav On Mon, 2002-02-11 at 21:32, Donghui Zhang wrote: > Dear Marios: > > Would you tell me the commands to burn CD on your machine? Thanks! >