Eli Segal <[EMAIL PROTECTED]> writes: > with what parameter do you use it ? > > i tried to read some of it options, but what do i need to make a copy > afterward with cdrecord ??
As I said, http://www.ibiblio.org/pub/Linux/docs/HOWTO/CD-Writing-HOWTO is your friend. After you dd if=/dev/cdrom of=image.iso you can do (run cdrecord -scanbus to determine the arguments to dev option) cdrecord -v speed=8 dev=0,0,0 -data image.iso In principle, you should be able to do a 1:1 copy of data CD in 1 step with cdrecord -v dev=0,0,0 speed=4 -isosize /dev/cdrom if you have separate CD-ROM and CD-writer drives, but that's what I said was unreliable. I prefer the 2-step version. -- Oleg Goldshmidt | [EMAIL PROTECTED] [Lisp] is the only computer language that is beautiful. - Neal Stephenson ================================================================= To unsubscribe, send mail to [EMAIL PROTECTED] with the word "unsubscribe" in the message body, e.g., run the command echo unsubscribe | mail [EMAIL PROTECTED]
