Burn-iso
From PTAGISWiki
- Make an iso if you don't already have one:
mkisofs -o sample.iso -J -r /home/user/data [ENTER]
... where "sample.iso" is the name of the iso and /home/user/data is the directory you're turning into an iso.
- As root, type:
cdrecord -scanbus
... in order to determine the device. It will be something like '0,0,0'
- Next type:
cdrecord -dummy dev=0,0,0 sample.iso
... in order to perform a test run. Remove the -dummy flag (but keep -dev) to do it for real.
cdrecord -dummy dev=0,0,0 driveropts=burnfree sample.iso to prevent buffer
underruns?
