Difference between revisions of "DVD Burning from the Command Line"

From FreekiWiki
Jump to navigation Jump to search
Line 9: Line 9:
 
<code>cdrecord -v -pad dev=/dev/cdrw1 Disk1.iso</code>
 
<code>cdrecord -v -pad dev=/dev/cdrw1 Disk1.iso</code>
  
TSBackup has two DVD burner installed Substitute <code>/dev/dvd1</code> for <code>/dev/dvd</code> for the second burner. The first one should be showing up as /dev/dvd but udev might have overwritten it on reboot in which case it is /dev/cdrom (hopefully not).
 
 
You can use <code>-speed=1</code> if you are having difficulty burning a DVD.  
 
You can use <code>-speed=1</code> if you are having difficulty burning a DVD.  
 
[[Category:Tech support]]
 
[[Category:Tech support]]

Revision as of 18:02, 12 December 2013

See Burning data to multiple disks using Discspan for instructions on how to make suitable iso images.

Use this to burn an iso on a dvd

growisofs -dvd-compat -Z /dev/dvd=disc.iso

and this on a cd

cdrecord -v -pad dev=/dev/cdrw1 Disk1.iso

You can use -speed=1 if you are having difficulty burning a DVD.