Saturday, April 27, 2024
70
rated 0 times [  70] [ 0]  / answers: 1 / hits: 160038  / 1 Year ago, mon, march 13, 2023, 1:18:14

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.


More From » command-line

 Answers
4

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=myiso.iso




More information about the read and write capabilities of your drive can be found with the following command, again substituting 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.


For installation of growisofs :


sudo apt install growisofs

For installation of wodim :


sudo apt install wodim

[#36230] Tuesday, March 14, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
eanda

Total Points: 439
Total Questions: 116
Total Answers: 105

Location: Armenia
Member since Sat, Dec 31, 2022
1 Year ago
;