Monday, April 29, 2024
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 3377  / 1 Year ago, fri, may 5, 2023, 7:59:46

I've successfully burned CDs from .iso images with wodim, but using this:



growisofs -dvd-compat -Z /dev/sg1=ImageToBurn.iso


fails with:



Executing 'builtin_dd if=ImageToBurn.iso of=/dev/sg1 obs=32k seek=0'
:-( write failed: Illegal seek


Brasero seems to work just fine in GUI; am I missing a library? is the command wrong?


More From » command-line

 Answers
4

I found the same thing happened to me when I tried your command.



Nevertheless, I believe you will find that the following command will work:



growisofs -dvd-compat -Z /dev/dvdrw=ImageToBurn.iso



In Ubuntu, /dev/dvdrw should be equivalent to /dev/sr0, which is a block device. /dev/sg1 is a character mode device for the generic SCSI interface, and that must not be the way growisofs interacts with the dvd device (a seek is normally an operation on a block device).


[#44084] Saturday, May 6, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
panshow

Total Points: 454
Total Questions: 98
Total Answers: 122

Location: Philippines
Member since Sat, Jul 11, 2020
4 Years ago
;