March
31
Linux: How to burn an iso image to a DVD
growisofs
– (the main) part of dvd+rw-tools.
growisofs -Z /dev/dvdrw=image.iso
By: Peterph
or
First you have to create ISO Using dd
command like
dd if=/dev/dvd of=my_test.iso bs=2048
Then write DVD Using this command
growisofs -dvd-compat -Z /dev/dvd=my_test.iso
By: Tjas