Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I have a DVD ISO file and i want to burn through the terminal .

We have many command formats but i am unable to choose the best & safe one . so please give me a best command to burn the ISO through the terminal .

share|improve this question

2 Answers

up vote 4 down vote accepted

There are several ways to do this, but here are just two ways that I use regularly. Please replace /dev/sr1 with the device identifier of your target drive (find out what it is with inxi -d), and replace myiso with your iso and its disk location if necessary.

  1. wodim -eject -tao speed=2 dev=/dev/sr1 -v -data myiso.iso

  2. growisofs -dvd-compat -Z /dev/sr1=image.iso

More information about the read and write capabilities of your drive can be found with the following command, again substututing my example /dev with your device identifier:

wodim -prcap dev=/dev/sr1

For more options relating to wodim and growisofs, see their respective manpages, by entering man wodim and man growisofs. (Note: wodim is a fork of the original cdrecord program)

share|improve this answer
fine @Mik . its worked with some background . – Jai Aug 14 '12 at 2:44
@Mik, can you explain in which package we can find inxi? – guntbert May 22 at 20:53
1  
@guntbert See this question for how to install inxi; I forgot it wasn't in the repositories. – Mik May 22 at 22:42

You could use Brasero, using command line arguments

brasero --help
share|improve this answer
1  
No thats failed me many times . thats why I want to try terminal . – Jai Aug 12 '12 at 4:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.