Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 40 |
Nodes: | 6 (0 / 6) |
Uptime: | 07:23:58 |
Calls: | 291 |
Files: | 910 |
Messages: | 76,392 |
What app is everyone using to write dvd's today? xfburn claims burn mode isn't implemented yet, and k3b insists on reformatting a dvd+rw, but
then does not recognize it to burn the image. Is there some magic
invocation I'm not doing?
Cheers, Gene Heskett, CET.
What app is everyone using to write dvd's today?
xfburn claims burn mode isn't implemented yet,
k3b insists on reformatting a dvd+rw,
but then does not recognize it to burn the image.
Is there some magic invocation I'm not doing?
As far as I know, brasero and k3b relyon the same libs.
Hi,
Gene Heskett wrote:
What app is everyone using to write dvd's today?I use my own program xorriso, mostly in scripts as the list of arguments
can become lengthy.
If you describe what you want to do then i could describe what i would do.
interesting & thank you, it refused to write a staples brand dvd+rw, itxfburn claims burn mode isn't implemented yet,Sounds like
https://forums.linuxmint.com/viewtopic.php?p=1952263#p1952263
Proposed remedy is to click at the button with the circular arrow beneath
a text field which tells the medium type (in that case "DVD+R").
but then does not recognize it to burn the image.k3b insists on reformatting a dvd+rw,In the first few write runs of a DVD+RW life, the drive reports yjay the medium is partly formatted. A skilled burn program then issues the SCSI command for background formatting, waits a dozen seconds until a reply arrives from the drive and then begins to write while formatting goes on. (Only DVD+RW can be formatted that way.)
Do you have any exact messages which i could search in Debian's K3B
sources ?
( https://sources.debian.org/src/k3b/24.05.2-1/ )
Maybe i can find out what's its woes in terms of drive and medium.
Is there some magic invocation I'm not doing?So you want to burn an image file to DVD+RW.
I'd do in a shell terminal with appropriate content in variables "drive"
and "image":
drive=/dev/sr0
image=...path.to.the.image.file...
xorriso -as cdrecord -v dev="$drive" fs=16m -eject "$image"
If something goes wrong, there should be error messages which i'd ask you
to copy+paste into a mail to this list or to my mail address if you deem
them unsuitable for public exposure.
Have a nice day :)
Thomas
.
On Mon, Dec 16, 2024 at 10:25 AM gene heskett <gheskett@shentel.net>
wrote:
What app is everyone using to write dvd's today? xfburn claims
burn mode
isn't implemented yet, and k3b insists on reformatting a dvd+rw, but
then does not recognize it to burn the image. Is there some magic
invocation I'm not doing?
I use k3b. It works fine for me with no issues. Formatting/Erasing theI think the lag is messing with its mind, it draws the initital
DVD works as well, although it says it is not needed for DVD. Have you
tried with a new DVD to see what that does? Have you tried
reinstalling k3b?
Cheers, Gene Heskett, CET.
--
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author, 1940)
If we desire respect for the law, we must first make the law
respectable.
- Louis D. Brandeis
--
⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Debian - The universal operating system ⢿⡄⠘⠷⠚⠋⠀ https://www.debian.org/
⠈⠳⣄⠀⠀
xfburn claims burn mode isn't implemented yet,
Sounds like
https://forums.linuxmint.com/viewtopic.php?p=1952263#p1952263
Proposed remedy is to click at the button with the circular arrow beneath
a text field which tells the medium type (in that case "DVD+R").
interesting & thank you, it refused to write a staples brand dvd+rw, it went thru the motions of formating the disk several times, then didn't recognize the disk even if ejected and reinserted, but is working just as expected on
a virgin Sony brand dvd+rw.
In 2 different dvd writers in this machine,
Hi,
Gene Heskett wrote:
I wrote:xfburn claims burn mode isn't implemented yet,
Gene Heskett wrote:Sounds like
https://forums.linuxmint.com/viewtopic.php?p=1952263#p1952263
Proposed remedy is to click at the button with the circular arrow beneath >>> a text field which tells the medium type (in that case "DVD+R").
interesting & thank you, it refused to write a staples brand dvd+rw, it went >> thru the motions of formating the disk several times, then didn't recognize >> the disk even if ejected and reinserted, but is working just as expected on >> a virgin Sony brand dvd+rw.Congrats to the success.
It would be really interesting to see whether xorriso with its diagnostic messages can tell anything enlightening about the problem with the other DVD+RW media.
Since DVD+RW are re-usable, it would be no waste of media if you try in
a shell terminal with appropriate path texts in "drive" and "image":
drive=/dev/sr0
image=...path.to.the.image.file...
xorriso -as cdrecord -v dev="$drive" fs=16m -eject "$image" 2>&1 | tee -i /tmp/xorriso.log
The messages will show up in the terminal window and also be copied to
the file /tmp/xorriso.log .
This file would be interesting for me to see. So if you can send it to
me in private i will inspect it for clues and report them to this mailing list.
If the run fails and stays obscure, then we could even watch the SCSI
command dialog of libburn and the drive by help of an additional option
in the xorriso run. This would become very verbose.
If the run is successful, then the GUI programs are thinking too much
about things which they should better leave to their burn backends.
gene@coyote:~/AppImages$ xorriso -outdev /dev/sr1In 2 different dvd writers in this machine,If you do not know which one is /dev/sr0 and which is /dev/sr1, then
you may do
xorriso -devices
which will tell vendor and model of the drives, like:
0 -dev '/dev/sr0' rwrw-- : 'HL-DT-ST' 'BDDVDRW GGC-H20L'
1 -dev '/dev/sr1' rwrw-- : 'ASUS ' 'BW-16D1HT'
("HL-DT-ST" = "Hitachi-LG Data Storage" drives are usually labeled "LG".
If this does not give the decisive clue, insert the medium into the
desired drive while having the other drive empty, and do
xorriso -outdev /dev/sr0
xorriso -outdev /dev/sr1
The one with the DVD+RW is supposed to report on stderr:
...
Media current: DVD+RW
...
whereas the empty drive will report:
...
Media current: is not recognizable
...
Have a nice day :)
Thomas
.
Hi,
Gene Heskett wrote:
I wrote:xfburn claims burn mode isn't implemented yet,
Gene Heskett wrote:Sounds like
https://forums.linuxmint.com/viewtopic.php?p=1952263#p1952263
Proposed remedy is to click at the button with the circular arrow beneath >>> a text field which tells the medium type (in that case "DVD+R").
interesting & thank you, it refused to write a staples brand dvd+rw, it went >> thru the motions of formating the disk several times, then didn't recognize >> the disk even if ejected and reinserted, but is working just as expected on >> a virgin Sony brand dvd+rw.Congrats to the success.
It would be really interesting to see whether xorriso with its diagnostic messages can tell anything enlightening about the problem with the other DVD+RW media.
Since DVD+RW are re-usable, it would be no waste of media if you try in
a shell terminal with appropriate path texts in "drive" and "image":
drive=/dev/sr0
image=...path.to.the.image.file...
xorriso -as cdrecord -v dev="$drive" fs=16m -eject "$image" 2>&1 | tee -i /tmp/xorriso.log
The messages will show up in the terminal window and also be copied to
the file /tmp/xorriso.log .
This file would be interesting for me to see. So if you can send it to
me in private i will inspect it for clues and report them to this mailing list.
If the run fails and stays obscure, then we could even watch the SCSI
command dialog of libburn and the drive by help of an additional option
in the xorriso run. This would become very verbose.
If the run is successful, then the GUI programs are thinking too much
about things which they should better leave to their burn backends.
In 2 different dvd writers in this machine,If you do not know which one is /dev/sr0 and which is /dev/sr1, then
you may do
xorriso -devices
which will tell vendor and model of the drives, like:
0 -dev '/dev/sr0' rwrw-- : 'HL-DT-ST' 'BDDVDRW GGC-H20L'
1 -dev '/dev/sr1' rwrw-- : 'ASUS ' 'BW-16D1HT'
("HL-DT-ST" = "Hitachi-LG Data Storage" drives are usually labeled "LG".
If this does not give the decisive clue, insert the medium into the
desired drive while having the other drive empty, and do
xorriso -outdev /dev/sr0
xorriso -outdev /dev/sr1
The one with the DVD+RW is supposed to report on stderr:
...
Media current: DVD+RW
...
whereas the empty drive will report:
...
Media current: is not recognizable
...
Have a nice day :)
Thomas
.
on that same staples dvd+rw disk:
xorriso -as cdrecord -v dev="$drive" fs=16m -eject "$image" 2>&1 | tee -i /tmp/xorriso.log
apparently xorriso, which I had to install, completed normally but did take
a long time closing, I'll send the log by PM
however, if the disk is re-inserted and:
gene@coyote:~/AppImages$ xorriso -outdev /dev/sr1
...
Media current: DVD+RW
Media status : is blank
Something definitely aglay with that disk. See line 190 of the log.
dd if=/dev/zero bs=2048 count=2295104 | \
xorriso -as cdrecord -v -nopad dev=/dev/sr1 -eject -
It's an older disk, 2.4 speed.
dd if=/dev/zero bs=2048 count=2295104 | \
xorriso -as cdrecord -v -nopad dev=/dev/sr1 -eject -
...
Writing to '/dev/sr1' completed successfully.
...
Media status : is written , is closed
So I'll do an up arrow and do it again but first reinsert disk then:
gene@coyote:~/AppImages$ xorriso -outdev /dev/sr1
...
libburn : SORRY : Asynchronous SCSI error on waiting after START
UNIT (+ LOAD): [2 30 00] Drive not ready. Incompatible medium installed.
Looks like that disk is burnt toast.