Hi,
I have used cdrecord to burn a few .iso disc and in general these are fine. But I was curious to know what kind of parameters oldhand longtime users like to use.
I mean off the bat for burning iso - I found using (for example)
Code:
cdrecord -dummy -v speed=6 dev=/dev/scd0 kubuntu-7.10-dvd-i386.iso
does a good job of burning the dvd (after testing first with -dummy) at a reasonable speed (x6 speed) and provided me plenty of information.
I used the line below to determine the speed (which gave me x6 write). It's actually 16x write but not to argue!
Code:
cdrecord dev=/dev/scd0 -prcap
So, what extra parameters or switches do regular users find useful that I may have overlooked in the man file? I did a good read but felt I extracted enough above for the purpose. I did see -V (which gave more info but with a warning).
Actually one thing I spotted from the log was:
Code:
WARNING: Phys disk size 2244045 differs from rzone size 2298496! Prerecorded disk?
WARNING: Phys start: 196608 Phys end 2440652
Blocks total: 2298496 Blocks current: 2298496 Blocks remaining: 54451
This was on the 2nd run after the dummy run was tested. The dvd disc was blank and never used. I'm guessing the cdrecord was making some assumptions that some blocks were already written to. Testing the dvd it was fine.
One improvement I can think of here is writing the output to a log file? Like...
Code:
cdrecord -dummy -v speed=6 dev=/dev/scd0 kubuntu-7.10-dvd-i386.iso <2/tmp/cdrecord_log.txt
Apologies, if I got the redirect wrong, as I haven't really covered that yet.