DVD – How to Burn ISO Image to DVD Using dd Command

burningdvd

I was looking at the command to burn iso image to a dvd. But I couldnt get the name of the device. In the /dev/ I could see cdrom,cdrw,dvd,dvdrw. I am using debian.

When I gave the command, I got the following output

dd if=debian-6.0.7-i386-DVD-1.iso of=/dev/dvdrw 
dd: opening `/dev/dvdrw': Read-only file system

Best Answer

You can't use dd this way (it might work for DVD-RAM though). What you are looking for is growisofs - (the main) part of dvd+rw-tools.

growisofs -Z /dev/dvdrw=image.iso
Related Question