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

From FreekiWiki
Jump to navigation Jump to search
Line 3: Line 3:
 
<code>genisoimage -o cd.iso -R -J  cd_dir</code>
 
<code>genisoimage -o cd.iso -R -J  cd_dir</code>
  
Use this to burn an iso
+
Use this to burn an iso on a dvd
  
 
<code>growisofs -dvd-compat  -Z /dev/dvd=disc.iso</code>
 
<code>growisofs -dvd-compat  -Z /dev/dvd=disc.iso</code>
 +
 +
and this on a cd
 +
 +
<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).
 
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 12:21, 9 November 2012

Use this to make an iso or use discspan .

genisoimage -o cd.iso -R -J cd_dir

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

TSBackup has two DVD burner installed Substitute /dev/dvd1 for /dev/dvd 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 -speed=1 if you are having difficulty burning a DVD.