You can subscribe to this list here.
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
(3) |
Sep
|
Oct
|
Nov
(2) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2015 |
Jan
(3) |
Feb
|
Mar
(3) |
Apr
|
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(23) |
Nov
(5) |
Dec
(6) |
2016 |
Jan
(22) |
Feb
(20) |
Mar
|
Apr
|
May
(4) |
Jun
(4) |
Jul
|
Aug
(7) |
Sep
(1) |
Oct
|
Nov
(2) |
Dec
(1) |
2017 |
Jan
|
Feb
|
Mar
(8) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2018 |
Jan
(1) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
2021 |
Jan
(6) |
Feb
(3) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Noel B. <noe...@au...> - 2021-11-26 15:20:05
|
NAME mountcd - shows where two files differ SYNOPSIS mountcd [ options ] device path ... DESCRIPTION mountcd mounts a ISO-9660 CD or DVD from a list of device paths. The medium is mounted to the directory /.cdrom that is created if it does not yet exist. PS Tried sending this off-list but your mails not getting through host cthulhu-isp.net [188.68.60.202] SMTP error from remote mail server after RCPT TO:<sc...@sc...>: 454 4.7.1 <sc...@sc...>: Relay access denied: retry timeout exceeded -- Regards, Noel Butler This Email, including attachments, may contain legally privileged information, therefore at all times remains confidential and subject to copyright protected under international law. You may not disseminate this message without the authors express written authority to do so. If you are not the intended recipient, please notify the sender then delete all copies of this message including attachments immediately. Confidentiality, copyright, and legal privilege are not waived or lost by reason of the mistaken delivery of this message. |
From: (Joerg S. <sc...@sc...> - 2021-03-20 14:28:41
|
Hi, if you like to send mails to the sourceforge mailing lists, you need to first register yourself for the mailing list. st xu <xu....@gm...> wrote: > ---------- Forwarded message --------- > ???????????? st xu <xu....@gm...> > Date: 2021???3???19????????? ??????6:27 > Subject: An issue about cdrtools > To: <joe...@fo...> > > > Hi Schilling, > Sorry to bother you, I'm a noob with the cdrtools, and I've met an issue > that I cannot append files to a *DVD-R* disc which was burned on Windows by > Windows Explorer with the *CD/DVD mode.* > and here are my commands: > // 1. get the start sector no. > *cdrecord -msinfo -dev /dev/sr0* Given that you do not send any information from cdrecord, I am wondering how I could help you.... in special since you do not use the cdrecord command line syntax that is explained in the cdrecord man page. Using /dev/* arguments for the dev= option from cdrecord is explicitly called unsupported in the man page and typically causes cdrecord to fail on Linux as a result of the bugs in the Linux kernel or simply as from the fact that Linux implements more than one driver interface for a single device and /dev/* typicalls enforces cdrecord to use the driver variant that does not work correctly. > // 2. make an iso with -C -M > *mkisofs -J -udf -C 0,93952 -M /dev/sr0 -V mki_burn -v -o image.iso > somefiles* > then an error occurred: > *mkisofs: unable to find previous session PVD '/dev/sr0'* > so i cannot accomplish my expectation. > this is the result of cd_session command for this nonempty disc. > [image: image.png] This error message is not from mkisofs :-( What software are you using? In case of problems with multi session disks, it may be that the option argument for the -C option is wrong. It helps to call "cdrecord -media-info -v" to retrieve the media information that I would need to be able to help. > and sometimes I will get a cdrecord error while appending files to an > nonempty disc using the command: *cdrecord -multi -eject -v -dev /dev/sr0 > targetIsoFile*: Again the unsupported dev= parameter :-( > * cdrecord: Data does not fit on current disk.* > I followed the codes and found that cdrecord cannot get the correct block > size of disc, in file drv_dvd.c, > [image: image.png] > after converting uchar to ulong, the nonzero value turned zero, so the > next process will abort. That message may appear when the medium is unable to hold the next session data or when you use a cdrecord variant that has been created (destroyed) by bad people that like to harm the cdrtoos project. What version of cdrecord are you using? What do you get from "cdrecord -version"? > I'm looking for something which could support appending files to a > nonempty disc which was burned on windows before then I found your project, > and the manpage said this project supports udf hybrid file system, I think > it will be useful until i met the issue. A disk written to before from windows may be in a bad state that prevants further data from being appended. What do you get from: cdrecord -media-info -v > Could you please give me some advice about how to solve these problems or > how to append files to a nonempty disc which was burned on windows before? > Or could you please let me know how to contact Schilling? Really need to > solve this. I'll be very grateful. > Thank you anyway. Expect your reply. As long as you do not send real information from cdrtools programs, I have no idea how I could help. Jörg -- EMail:jo...@sc... Jörg Schilling D-13353 Berlin Blog: http://schily.blogspot.com/ URL: http://cdrecord.org/private/ http://sourceforge.net/projects/schilytools/files/ |
From: st xu <xu....@gm...> - 2021-03-19 06:32:02
|
---------- Forwarded message --------- 发件人: st xu <xu....@gm...> Date: 2021年3月19日周五 上午6:27 Subject: An issue about cdrtools To: <joe...@fo...> Hi Schilling, Sorry to bother you, I'm a noob with the cdrtools, and I've met an issue that I cannot append files to a *DVD-R* disc which was burned on Windows by Windows Explorer with the *CD/DVD mode.* and here are my commands: // 1. get the start sector no. *cdrecord -msinfo -dev /dev/sr0* // 2. make an iso with -C -M *mkisofs -J -udf -C 0,93952 -M /dev/sr0 -V mki_burn -v -o image.iso somefiles* then an error occurred: *mkisofs: unable to find previous session PVD '/dev/sr0'* so i cannot accomplish my expectation. this is the result of cd_session command for this nonempty disc. [image: image.png] and sometimes I will get a cdrecord error while appending files to an nonempty disc using the command: *cdrecord -multi -eject -v -dev /dev/sr0 targetIsoFile*: * cdrecord: Data does not fit on current disk.* I followed the codes and found that cdrecord cannot get the correct block size of disc, in file drv_dvd.c, [image: image.png] after converting uchar to ulong, the nonzero value turned zero, so the next process will abort. I'm looking for something which could support appending files to a nonempty disc which was burned on windows before then I found your project, and the manpage said this project supports udf hybrid file system, I think it will be useful until i met the issue. Could you please give me some advice about how to solve these problems or how to append files to a nonempty disc which was burned on windows before? Or could you please let me know how to contact Schilling? Really need to solve this. I'll be very grateful. Thank you anyway. Expect your reply. |
From: (Joerg S. <sc...@sc...> - 2021-02-14 16:07:06
|
Noel Butler <noe...@au...> wrote: > schillytools in and of itself is not the problem, the problem is up > until recently, year or 2 ago, we could load SF, go to /alpha and > download the latest pure cdrtools source code on its own. > Now this is not available - if it is the SF mirrors I end up on are > broken. if you no longer publish cdrtools you need wipe out the SF > content and place a redirect and a note explaining it, or n 15 years > time people will still be using a version from 2017 since everybody > knows the official website is cdroots @ SF, that is where everybody > looks Well, the aplha from cdrtools was replaced by frequent updates in schilytools and the updates in cdrtools/aplha have been shut down nearly 6 years ago already. Jörg -- EMail:jo...@sc... Jörg Schilling D-13353 Berlin Blog: http://schily.blogspot.com/ URL: http://cdrecord.org/private/ http://sourceforge.net/projects/schilytools/files/ |
From: Noel B. <noe...@au...> - 2021-02-06 02:10:57
|
On 06/02/2021 11:50, Noel Butler wrote: > website is cdroots @ Jesus I hate this spell checker at times. -- Regards, Noel Butler This Email, including attachments, may contain legally privileged information, therefore at all times remains confidential and subject to copyright protected under international law. You may not disseminate this message without the authors express written authority to do so. If you are not the intended recipient, please notify the sender then delete all copies of this message including attachments immediately. Confidentiality, copyright, and legal privilege are not waived or lost by reason of the mistaken delivery of this message. |
From: Noel B. <noe...@au...> - 2021-02-06 01:50:25
|
On 09/01/2021 23:13, sc...@sc... wrote: > Well, first a question: > > is there a reason for answering after such a long time? > This seems to be from 10 months ago... I just found it in my spam folder, I don't get a lot of spam, my mail server does excellent job, so once a year or when I can be bothered I look in there and clean it out, that's how I found it. > If you like to directly install, you are free to chdir into a selection > of > subdirectories and to call "make install" from these subdirectories, > implementing your private selection. OK, that's what I was after thankyou, > Well, the reason for introducing schilytools in December 2007 was > mainly to > reduce the effort for maintaining so much software in a way that schillytools in and of itself is not the problem, the problem is up until recently, year or 2 ago, we could load SF, go to /alpha and download the latest pure cdrtools source code on its own. Now this is not available - if it is the SF mirrors I end up on are broken. if you no longer publish cdrtools you need wipe out the SF content and place a redirect and a note explaining it, or n 15 years time people will still be using a version from 2017 since everybody knows the official website is cdroots @ SF, that is where everybody looks -- Regards, Noel Butler This Email, including attachments, may contain legally privileged information, therefore at all times remains confidential and subject to copyright protected under international law. You may not disseminate this message without the authors express written authority to do so. If you are not the intended recipient, please notify the sender then delete all copies of this message including attachments immediately. Confidentiality, copyright, and legal privilege are not waived or lost by reason of the mistaken delivery of this message. |
From: (Joerg S. <sc...@sc...> - 2021-01-09 13:46:45
|
Noel Butler <noe...@au...> wrote: > Noel did not include any errors because there are none. > This is a reply to Jorgs post from 10 month ago, you likely missed it. > and the Question in there was install, looks like it will install > everything, not just what you want, I was asking him for clarification > if that was so, because I have better things to do than spend 2 days > selectively recovering my system back to what it is and is needed as for > very specific reasons. If you have problems with your distro, please try tro contact the people behind that distro. > > I'm just trying to understand why slackware about-to-be-released new > > latest distro is still on 3.0.1 > > As they think/believe the 3.0.2alpha means it's not "Stable"?? > > The old alphas no longer seem available on my mirror, and as Jorg said, > its no longer released as cdrtools for years now, its is now in his all > encompassing schilytools package, which has a whole lot more than > cdrecord mkisofs etc. I have no idea what mirror you have in mind. Please note that I do not control mirrors. > Jorg once complained strongly when debian used a fork, because teh fork > was made easy to install and they refused to use alpha versions or some > such rot, this is many years ago. Youd think he would make it easy for > people if he still wants it used. Sorry, but it does not help if a distro offers easy to install binary packages that are full of distro specific bugs that prevent usability. In general, in order to avoid your problem, you have two options: - compile cdrtools yourself - switch to a Linux distro that is fully OSS oriented > and if I am to show justification to slackware, I need authoritative > answer to my install question, and I shouldnt have to "try it myself" to > find out :) Well, Suse, Gentoo and some other Linux distros switched to schilytools a long time ago. Did you try to contact your distro? Jörg -- EMail:jo...@sc... Jörg Schilling D-13353 Berlin Blog: http://schily.blogspot.com/ URL: http://cdrecord.org/private/ http://sourceforge.net/projects/schilytools/files/ |
From: (Joerg S. <sc...@sc...> - 2021-01-09 13:30:49
|
Noel Butler <noe...@au...> wrote: > On 10/03/2020 22:52, Joerg Schilling wrote: > > > cd psmake > > ./MAKE-all > > cd .. > > psmake/smake > > and install, it will install everything? Not just cdrecord. Well, first a question: is there a reason for answering after such a long time? This seems to be from 10 months ago... Did something change since then? Since there are no outstanding bugs in schilytools, this does not seem to be a reminder for outstanding bugs. Installing "all" into a prototype area is the typical preparation for creating binary packages. The tree below "pkgdefs/OCSW" contains the meta data for UNIX packages. If you are maintaining a disrtro that uses a private binary packaging format, you would need to manually convert the existing meta data into your private format. If you like to directly install, you are free to chdir into a selection of subdirectories and to call "make install" from these subdirectories, implementing your private selection. > I'm just trying to understand why slackware about-to-be-released new > latest distro is still on 3.0.1 Since I am not slackware, I cannot answer this question. Please ask slackware people. > it seems the quiet change that nobody I know has heard of the move to > schilytools and a lot of stuffing around just to build cdrecord (because > of your 2 decade old spat with make and linux in general) and trying to > sway people t use your version of a make... its no wonder people give > up, and the users always lose. Well, the reason for introducing schilytools in December 2007 was mainly to reduce the effort for maintaining so much software in a way that permits more frequent updates. Since then, udates have become available in an average frequency of once every three weeks, even if a single sub-project did not change enough to justify a new release. As a side effect, this also makes it easier to deal with platforms that do not include a standard UNIX make program but rather ship an own version of make that is not fully POSIX compliant or that does not support the needed enhancements in a way that is needed for a portable build environment. The trick here is that schilytools include a shell script controlled bootstrap for the oldest (nearly 40 years old) OSS make implementation that is compliant enough to support the features needed to grant portability to all supported target platforms. Smake does not yet support parallel builds, but it is the most portable make implementation and there are still other fully supported make implementations... BTW: Since 4 years, schilytools also includes a portable version of SunPro Make that is not yet as portable as smake, but still at least as portable as e.g. gmake. SunPro Make is a 100% rewrite of the classical UNIX make program that was first published by Sun Microsystems in January 1986 with SunOS-3.2. It offered a lot of new features first seen on UNIX, e.g.: - The include directive - Pattern macro substitutions - Pattern based implicit rules - target specific maco definitions All modern make implementations recreated ideas from SunPro Make, including "gmake" that has been introduced in 1989 (which is three years after it's blueprint SunPro Make). The unfortunate problem with gmake is that it introduced plenty of bugs in corner cases while reimplementing SunPro Make features and that bug reports do not result in fixes. This may be caused by it's current maintainer that started in 1996 and does not know the background of decisions. Just as a side note: the currently most annoying problem in gmake is that it starts parallelized work too early and does not offer a method to control the execution order of critical sections in the process of handling dependencies with the include directive processing. This causes gmake to mostly fail in parallel mode with the Schily Makefile system. So if you do not like smake for some reasons, you may like to install SunPro Make and get a POSIX certified UNIX make implementation that is fully supported by the Schily Makefile system and that supports parallel builds. Jörg -- EMail:jo...@sc... Jörg Schilling D-13353 Berlin Blog: http://schily.blogspot.com/ URL: http://cdrecord.org/private/ http://sourceforge.net/projects/schilytools/files/ |
From: (Joerg S. <sc...@sc...> - 2021-01-09 13:27:38
|
Hendrik Visage <hv...@en...> wrote: > > I'm just trying to understand why slackware about-to-be-released new latest distro is still on 3.0.1 > > As they think/believe the 3.0.2alpha means it???s not ???Stable????? Well, actively maintained new features may introduce temporary problems but this rarely affects other part of the software as well. This happened e.g. last year with the SCCS sub-project, but only if you used experimental new parts of the featureset. In general, schilytools offer mature stability and compared to other OSS projects, they do not need to fear a comparison with stable variants of theses other projects. Jörg -- EMail:jo...@sc... Jörg Schilling D-13353 Berlin Blog: http://schily.blogspot.com/ URL: http://cdrecord.org/private/ http://sourceforge.net/projects/schilytools/files/ |
From: Noel B. <noe...@au...> - 2021-01-08 23:32:10
|
On 09/01/2021 01:30, Hendrik Visage wrote: >> On 08 Jan 2021, at 16:19 , Noel Butler <noe...@au...> wrote: >> >> Hrmm tried this to Jorg direct but is no longer at FH? >> >> On 10/03/2020 22:52, Joerg Schilling wrote: >> >> cd psmake >> ./MAKE-all >> cd .. >> psmake/smake >> >> and install, it will install everything? Not just cdrecord. > > /me notice Noel didn't invclude any errors, versions used/tried etc. Noel did not include any errors because there are none. This is a reply to Jorgs post from 10 month ago, you likely missed it. and the Question in there was install, looks like it will install everything, not just what you want, I was asking him for clarification if that was so, because I have better things to do than spend 2 days selectively recovering my system back to what it is and is needed as for very specific reasons. If I want bloat I'll go use windows, I'm very specific about what goes in this box > I'm just trying to understand why slackware about-to-be-released new > latest distro is still on 3.0.1 > As they think/believe the 3.0.2alpha means it's not "Stable"?? The old alphas no longer seem available on my mirror, and as Jorg said, its no longer released as cdrtools for years now, its is now in his all encompassing schilytools package, which has a whole lot more than cdrecord mkisofs etc. If you used the package he wants us to use now, you would actually know this. > and trying to sway people t use your version of a make... its no wonder > people give up, and the users always lose. > Well, unless you are paying Joerg a premium rate for support/etc. you > have absolutely no reason to complain. Jorg once complained strongly when debian used a fork, because teh fork was made easy to install and they refused to use alpha versions or some such rot, this is many years ago. Youd think he would make it easy for people if he still wants it used. and if I am to show justification to slackware, I need authoritative answer to my install question, and I shouldnt have to "try it myself" to find out :) -- Regards, Noel Butler This Email, including attachments, may contain legally privileged information, therefore at all times remains confidential and subject to copyright protected under international law. You may not disseminate this message without the authors express written authority to do so. If you are not the intended recipient, please notify the sender then delete all copies of this message including attachments immediately. Confidentiality, copyright, and legal privilege are not waived or lost by reason of the mistaken delivery of this message. |
From: Hendrik V. <hv...@en...> - 2021-01-08 16:26:31
|
> On 08 Jan 2021, at 16:19 , Noel Butler <noe...@au...> wrote: > > Hrmm tried this to Jorg direct but is no longer at FH? > > On 10/03/2020 22:52, Joerg Schilling wrote: > > > cd psmake > ./MAKE-all > cd .. > psmake/smake > > and install, it will install everything? Not just cdrecord. /me notice Noel didn’t invclude any errors, versions used/tried etc. > I'm just trying to understand why slackware about-to-be-released new latest distro is still on 3.0.1 As they think/believe the 3.0.2alpha means it’s not “Stable”?? > it seems the quiet change that nobody I know has heard of the move to schilytools and a lot of stuffing around just to build cdrecord (because of your 2 decade old spat with make and linux in general) Yeah, Linux kernel devs do have bunch of chips on their shoulders, just see their issues with EVMS, OpenVZ, openZFS,dtrace to name but a few high profile cases, so, the arrogance is especially Linux kernel dev side too. > and trying to sway people t use your version of a make... its no wonder people give up, and the users always lose. Well, unless you are paying Joerg a premium rate for support/etc. you have absolutely no reason to complain. |
From: Noel B. <noe...@au...> - 2021-01-08 14:36:33
|
Hrmm tried this to Jorg direct but is no longer at FH? On 10/03/2020 22:52, Joerg Schilling wrote: > cd psmake > ./MAKE-all > cd .. > psmake/smake and install, it will install everything? Not just cdrecord. I'm just trying to understand why slackware about-to-be-released new latest distro is still on 3.0.1 it seems the quiet change that nobody I know has heard of the move to schilytools and a lot of stuffing around just to build cdrecord (because of your 2 decade old spat with make and linux in general) and trying to sway people t use your version of a make... its no wonder people give up, and the users always lose. thanks for clarifying -- Regards, Noel Butler This Email, including attachments, may contain legally privileged information, therefore at all times remains confidential and subject to copyright protected under international law. You may not disseminate this message without the authors express written authority to do so. If you are not the intended recipient, please notify the sender then delete all copies of this message including attachments immediately. Confidentiality, copyright, and legal privilege are not waived or lost by reason of the mistaken delivery of this message. |
From: Noel B. <noe...@au...> - 2019-11-24 01:00:56
|
On 23/11/2019 23:16, Antonio Olivares wrote: > At times, I also remembered the activity and the mails. But this list is mostly quiet. However, Mr. Schilling does update cdrtools frequently, but on schily tools. I get the sources and compile them Jorg has been noticeably quit in a long time, hope all is well, yes this list for years has been low traffic but active, I just noted its been over 12 months since a post. > http://schilytools.sourceforge.net > Version is newer/latest That just links to the cdrtools SF page, so I guess everything is happy so no updates required. -- Kind Regards, Noel Butler This Email, including any attachments, may contain legally privileged information, therefore remains confidential and subject to copyright protected under international law. You may not disseminate, discuss, or reveal, any part, to anyone, without the authors express written authority to do so. If you are not the intended recipient, please notify the sender then delete all copies of this message including attachments, immediately. Confidentiality, copyright, and legal privilege are not waived or lost by reason of the mistaken delivery of this message. Only PDF [1] and ODF [2] documents accepted, please do not send proprietary formatted documents Links: ------ [1] http://www.adobe.com/ [2] http://en.wikipedia.org/wiki/OpenDocument |
From: Antonio O. <oli...@gm...> - 2019-11-23 13:16:52
|
On Thursday, November 21, 2019, Noel Butler <noe...@au...> wrote: > A test, list's been quiet all year? > > Also whats the latest version, the latest I can find is: > > cdrtools-3.02a07.tar.bz2 2016-12-16 00:25 > > I know cdrecord is pretty damn stable so might be still current, just > checking :) > > > -- > > Kind Regards, > > Noel Butler > This Email, including any attachments, may contain legally privileged > information, therefore remains confidential and subject to copyright > protected under international law. You may not disseminate, discuss, or > reveal, any part, to anyone, without the authors express written authority > to do so. If you are not the intended recipient, please notify the sender > then delete all copies of this message including attachments, immediately. > Confidentiality, copyright, and legal privilege are not waived or lost by > reason of the mistaken delivery of this message. Only PDF > <http://www.adobe.com/> and ODF > <http://en.wikipedia.org/wiki/OpenDocument> documents accepted, please do > not send proprietary formatted documents > > Dear Noel, At times, I also remembered the activity and the mails. But this list is mostly quiet. However, Mr. Schilling does update cdrtools frequently, but on schily tools. I get the sources and compile them http://schilytools.sourceforge.net Version is newer/latest Hope this helps. Best Regards, Antonio |
From: Noel B. <noe...@au...> - 2019-11-21 13:57:27
|
A test, list's been quiet all year? Also whats the latest version, the latest I can find is: cdrtools-3.02a07.tar.bz2 2016-12-16 00:25 I know cdrecord is pretty damn stable so might be still current, just checking :) -- Kind Regards, Noel Butler This Email, including any attachments, may contain legally privileged information, therefore remains confidential and subject to copyright protected under international law. You may not disseminate, discuss, or reveal, any part, to anyone, without the authors express written authority to do so. If you are not the intended recipient, please notify the sender then delete all copies of this message including attachments, immediately. Confidentiality, copyright, and legal privilege are not waived or lost by reason of the mistaken delivery of this message. Only PDF [1] and ODF [2] documents accepted, please do not send proprietary formatted documents Links: ------ [1] http://www.adobe.com/ [2] http://en.wikipedia.org/wiki/OpenDocument |
From: 墨焓 <zmh...@gm...> - 2018-12-13 15:41:16
|
Hi, I'm using mkisofs (3.02a09), and find a bug. When I use it to generate ISO file from some files/dirs named in Chinese characters, the corresponding objects inside the ISO have incomplete names. They lose some tailing characters, the remaining part is identical. For example, a file `source_dir/新建文本文件.txt` becomes `新建文本文_#xxxx`, the xxxx part is some hex number. This bug really bothers me and force me stop using mkisofs. Could you please take a look on it? best regards, mo-han. |
From: Lucas L. <ll...@ya...> - 2018-07-24 21:01:56
|
Hi, After burning a CD my Linux system seems to think the disk is still blank: I can't mount it (either by mount or udisksctl). I have to manually eject the disk and close back the tray (this is a laptop, the tray is not motorized). Is there a way to "virtually" reload the disk? I tried hdparm -z and partprobe, to no avail. Thanks for your help. Best regards, Lucas Levrel |
From: Erik K. <eri...@gm...> - 2018-03-04 08:25:28
|
Is there a way to return translated utf8 info from the cddb request if the protocol level which was used is latin1? I could use `recode latin1..utf8 audio.cddb` when the audio.cddb file contains "Revision: 5" manually, but I am using the -H option with `cdda2wav` being called as a ripper from within `abcde`. I have "LANG=de_DE.UTF8" set. Version used is `cdda2wav` 3.02a09. -- Erik Koennecke |
From: Erik K. <eri...@gm...> - 2018-02-22 15:18:15
|
Is there a way to return utf8 info from the cddb request if the protocol level which was used is latin1? I could use `recode latin1..utf8 audio.cddb` when the audio.cddb file contains "Revision: 5", but I am using the -H option with `cdda2wav` being called as a ripper from within `abcde`. I have "LANG=de_DE.UTF8" set. Version used is `cdda2wav` 3.02a09. -- Erik Koennecke |
From: Mark K. <mar...@gm...> - 2018-01-28 19:51:30
|
Hi, I'm travelling and have access to an older laptop running very out-of-date Gentoo where I need to burn a DVD if possible. The message appears to be 'cannot load media with this drive'. Am I missing something obvious? Machine info and commands follow. If you need more info please let me know. We have another one of these laptops purchase at the same time which does write DVDs but I don't know if it has the same DVD drive in it. Thanks in advance, Mark The machine is an Asus G73JW with a DVD drive that shows up as: Rosie Downloads # cdrecord --scanbus Cdrecord-ProDVD-ProBD-Clone 3.02a06 (x86_64-pc-linux-gnu) Copyright (C) 1995-2016 Joerg Schil ling Linux sg driver version: 3.5.36 Using libscg version 'schily-0.9'. <SNIP> scsibus1: 1,0,0 100) 'Slimtype' 'BD E DS4E1S ' 'EA2B' Removable CD-ROM 1,1,0 101) * 1,2,0 102) * 1,3,0 103) * 1,4,0 104) * 1,5,0 105) * 1,6,0 106) * 1,7,0 107) * <SNIP The first link for the drive was at Amazon. The drive appears to support DVD-RW which is the only media I have available at this time: https://www.amazon.com/DS-4E1S-Blu-ray-Optical-Repaclement-DS-6E2SH/dp/B00CBTE53Q When I attempt to burn an Ubuntu image using cdrecord I see the following: Rosie Downloads # cdrecord ubuntu-16.04.3-desktop-amd64.iso cdrecord: No write mode specified. cdrecord: Assuming -sao mode. cdrecord: If your drive does not accept -sao, try -tao. cdrecord: Future versions of cdrecord may have different drive dependent defaults. Cdrecord-ProDVD-ProBD-Clone 3.02a06 (x86_64-pc-linux-gnu) Copyright (C) 1995-2016 Joerg Schil ling Linux sg driver version: 3.5.36 Using libscg version 'schily-0.9'. No target specified, trying to find one... Using dev=1,0,0. Device type : Removable CD-ROM Version : 5 Response Format: 2 Capabilities : Vendor_info : 'Slimtype' Identifikation : 'BD E DS4E1S ' Revision : 'EA2B' Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM. cdrecord: Cannot load media with this drive! cdrecord: Try to load media by hand. Using generic SCSI-3/mmc CD-R/CD-RW driver (mmc_cdr). Driver flags : MMC-3 SWABAUDIO BURNFREE FORCESPEED Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R LAYER_JUMP cdrecord: Warning: Cannot read drive buffer. cdrecord: Warning: The DMA speed test has been skipped. cdrecord: Cannot load media with this drive! cdrecord: Try to load media by hand. cdrecord: Cannot load media. Rosie Downloads # cdrecord -tao ubuntu-16.04.3-desktop-amd64.iso Cdrecord-ProDVD-ProBD-Clone 3.02a06 (x86_64-pc-linux-gnu) Copyright (C) 1995-2016 Joerg Schil ling Linux sg driver version: 3.5.36 Using libscg version 'schily-0.9'. No target specified, trying to find one... Using dev=1,0,0. Device type : Removable CD-ROM Version : 5 Response Format: 2 Capabilities : Vendor_info : 'Slimtype' Identifikation : 'BD E DS4E1S ' Revision : 'EA2B' Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM. cdrecord: Cannot load media with this drive! cdrecord: Try to load media by hand. Using generic SCSI-3/mmc CD-R/CD-RW driver (mmc_cdr). Driver flags : MMC-3 SWABAUDIO BURNFREE FORCESPEED Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R LAYER_JUMP cdrecord: Warning: Cannot read drive buffer. cdrecord: Warning: The DMA speed test has been skipped. cdrecord: Cannot load media with this drive! cdrecord: Try to load media by hand. cdrecord: Cannot load media. Rosie Downloads # Rosie Downloads # cdrecord -speed=40 dev=1,0,0 -eject -dao driveropts=burnfree ubuntu-16.04.3-desktop-amd64.is o Cdrecord-ProDVD-ProBD-Clone 3.02a06 (x86_64-pc-linux-gnu) Copyright (C) 1995-2016 Joerg Schilling scsidev: '1,0,0' scsibus: 1 target: 0 lun: 0 Linux sg driver version: 3.5.36 Using libscg version 'schily-0.9'. Device type : Removable CD-ROM Version : 5 Response Format: 2 Capabilities : Vendor_info : 'Slimtype' Identifikation : 'BD E DS4E1S ' Revision : 'EA2B' Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM. cdrecord: Cannot load media with this drive! cdrecord: Try to load media by hand. Using generic SCSI-3/mmc CD-R/CD-RW driver (mmc_cdr). Driver flags : MMC-3 SWABAUDIO BURNFREE FORCESPEED Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R LAYER_JUMP cdrecord: Warning: Cannot read drive buffer. cdrecord: Warning: The DMA speed test has been skipped. cdrecord: Cannot load media with this drive! cdrecord: Try to load media by hand. cdrecord: Cannot load media. Rosie Downloads # cdrecord -speed=40 dev=1,0,0 -eject -tao driveropts=burnfree ubuntu-16.04.3-desktop-amd64.is o Cdrecord-ProDVD-ProBD-Clone 3.02a06 (x86_64-pc-linux-gnu) Copyright (C) 1995-2016 Joerg Schilling scsidev: '1,0,0' scsibus: 1 target: 0 lun: 0 Linux sg driver version: 3.5.36 Using libscg version 'schily-0.9'. Device type : Removable CD-ROM Version : 5 Response Format: 2 Capabilities : Vendor_info : 'Slimtype' Identifikation : 'BD E DS4E1S ' Revision : 'EA2B' Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM. cdrecord: Cannot load media with this drive! cdrecord: Try to load media by hand. Using generic SCSI-3/mmc CD-R/CD-RW driver (mmc_cdr). Driver flags : MMC-3 SWABAUDIO BURNFREE FORCESPEED Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R LAYER_JUMP cdrecord: Warning: Cannot read drive buffer. cdrecord: Warning: The DMA speed test has been skipped. cdrecord: Cannot load media with this drive! cdrecord: Try to load media by hand. cdrecord: Cannot l |
From: <sk...@st...> - 2017-12-04 11:27:07
|
Hi: Does anybody know how to specify "where to put the layer break" while writing a large ISO image (6+ GiB) on a 8.5 GB DVD-R DL disk ? Do we need to calculate this or is there an option that we can use so as to enable to tool to compute it by itself ? Long Story Have to write a 6+ GiB bootable ISO image on a DVD Normal DVD is 4.5 GB so it cannot be used Dual Layer DVD or DVD-R DL hold 8.5GB as they have two recordable dye layers. I bought a Sony 8.5 GB DVD-R DL and used growisofs to write the ISO image, by issuing the following command the device that maps to DVD writer is # ls -l /dev/sr0 brw-rw---- 1 root optical 11, 0 Dec 4 12:50 /dev/sr0 Hence the command issued is, # growisofs -dvd-compat -Z /dev/sr0=mybootable.iso The DVD writing process started as usual and then stopped with an ERROR exactly when one layer (approx 4.5 GiB) was written :-[ WRITE@LBA=1fdb40h failed with SK=3h/ASC=0Ch/ACQ=00h]: Input/output error :-( write failed: Input/output error The versions of the tools are as follows: # # growisofs -version * growisofs by <ap...@fy...>, version 7.1, front-ending to mkisofs: mkisofs 3.02a07 (x86_64-unknown-linux-gnu) # # cdrecord -minfo -v Cdrecord-ProDVD-ProBD-Clone 3.02a07 (x86_64-unknown-linux-gnu) Copyright (C) 1995-2016 Joerg Schilling TOC Type: 1 = CD-ROM Linux sg driver version: 3.5.36 Using libscg version 'schily-0.9'. SCSI buffer size: 32768 No target specified, trying to find one... Using dev=1,0,0. atapi: 1 Device type : Removable CD-ROM Version : 5 Response Format: 2 Capabilities : Vendor_info : 'MATSHITA' Identifikation : 'DVD-RAM UJ8C2 S ' Revision : '1.00' Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM. Current: DVD+R/DL Profile: DVD-RAM Profile: DVD+R/DL (current) Profile: DVD+R Profile: DVD+RW Profile: DVD-RW restricted overwrite Profile: DVD-RW sequential recording Profile: DVD-R/DL layer jump recording Profile: DVD-R/DL sequential recording Profile: DVD-R sequential recording Profile: DVD-ROM Profile: CD-RW Profile: CD-R Profile: CD-ROM Profile: Removable Disk Using generic SCSI-3/mmc-3 DVD+R driver (mmc_dvdplusr). Driver flags : NO-CD DVD MMC-3 SWABAUDIO BURNFREE Supported modes: PACKET SAO Drive buf size : 393216 = 384 KB cdrecord: Warning: Cannot read drive buffer. cdrecord: Warning: The DMA speed test has been skipped. Current Secsize: 2048 book type: DVD+R/DL, Version (14.1) disc size: 120mm (0) maximum rate: Not specified (15) number of layers:2 track path: Opposite Track Path (1) layer type: Rewritable Area (2) linear density: 0.293 ?m/bit (1) track density: 0.74 ?m/track (0) phys start: 196608 (0x30000) phys end: 16580607 end layer 0: 2283519 bca: 0 phys size:... 16384000 layer break at: 2086912 Category/Version E1 Disk size 0F Disk structure 32 Recoding density 10 Manufacturer: 'MBIPG101' Media type: 'R10' Product revision 65 ADIP numbytes 64 Reference speed 37 Max speed 37 L0 init status: 1 L0 data areacap: 1702208 copyr prot type: 0 region mgt info: 0 cpm: 0 cgms: 0 rzone size: 40 rzone number: 1 border number: 1 ljrs: 0 track mode: 7 copy: 0 damage: 1 reserved track: 0 blank: 0 incremental: 0 fp: 0 data mode: 1 lra valid: 0 nwa valid: 0 rzone start: 0 next wr addr: 0 free blocks: 0 blocking factor: 16 rzone size: 3404416 last recorded addr: 0 read compat lba: 265696 Capacity Blklen/Sparesz. Format-type Type 3404416 2048 0x00 No Media Present or Unknown Capacity Mounted media class: DVD Mounted media type: DVD+R/DL Disk Is not erasable data type: standard disk status: incomplete/appendable session status: illegal BG format status: none first track: 1 number of sessions: 1 first track in last sess: 1 last track in last sess: 1 Disk Is unrestricted Disk type: DVD, HD-DVD or BD Disk appl. code: 0 Track Sess Type Start Addr End Addr Size ============================================== 1 1 Data 0 3404415 3404416 -1 Last session start address: 0 Last session leadout start address: 3404416 -- Hardware information # lshw -c disk *-cdrom description: DVD-RAM writer product: DVD-RAM UJ8C2 S vendor: MATSHITA physical id: 0.0.0 bus info: scsi@1:0.0.0 logical name: /dev/cdrom logical name: /dev/sr0 version: 1.00 capabilities: removable audio cd-r cd-rw dvd dvd-r dvd-ram configuration: ansiversion=5 status=nodisc ---- Anybody explored this or faced a similar issue, please share the work around you came up with. Thanks in advance. warm regards Saifi. |
From: tscheggsches <tsc...@bl...> - 2017-08-08 20:20:06
|
Hi I try to burn an audio CD, but the write process stops while writing track 3. I'm using Linux kernel 4.12.4 on gentoo. The drive is connected on a XPS-13 (Thunderbolt --> Hub --> USB). * First try was without any additional options to k3b * Same behaviour with scgopts=ignore-resid * dmesg --follow does not spit out any errors/hints 1. The first thing I noted was the error message "cdrecord: Warning: Cannot read drive buffer / cdrecord: Warning: The DMA speed test has been skipped." - Is this a problem and how can it be solved? 2. While writing track 3, the writing process stops, and after some time the tray opens and the disc is ejected - that's why the other errors come from Do you have any ideas, suggestions? Best Regards, René ------------------------------------------------------------------------ dmesg after connecting the drive [ +5.815836] usb 3-1.2.3: new high-speed USB device number 10 using xhci_hcd [ +0.096534] usb 3-1.2.3: New USB device found, idVendor=0e8d, idProduct=1887 [ +0.000008] usb 3-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ +0.000005] usb 3-1.2.3: Product: Portable Super Multi Drive [ +0.000004] usb 3-1.2.3: Manufacturer: Hitachi-LG Data Storage Inc [ +0.000004] usb 3-1.2.3: SerialNumber: KXFGCRI5818 [ +0.005429] usb-storage 3-1.2.3:1.0: USB Mass Storage device detected [ +0.000451] scsi host1: usb-storage 3-1.2.3:1.0 [ +1.011890] scsi 1:0:0:0: CD-ROM ASUS SDRW-08U7M-U A101 PQ: 0 ANSI: 0 [ +0.015103] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray [ +0.003303] sr 1:0:0:0: Attached scsi CD-ROM sr0 [ +0.001312] sr 1:0:0:0: Attached scsi generic sg2 type 5 ------------------------------------------------------------------------ lshw -short H/W path Device Class Description ========================================================== system XPS 13 9365 (077A) /0 bus 03WW2T /0/0 memory 64KiB BIOS /0/400 processor Intel(R) Core(TM) i7-7Y75 CPU @ 1.30GHz /0/400/700 memory 128KiB L1 cache /0/400/701 memory 512KiB L2 cache /0/400/702 memory 4MiB L3 cache /0/1000 memory 8GiB System Memory /0/1000/0 memory 4GiB Row of chips Synchronous 1867 MHz (0.5 ns) /0/1000/1 memory 4GiB Row of chips Synchronous 1867 MHz (0.5 ns) /0/100 bridge Intel Corporation /0/100/2 display Intel Corporation /0/100/4 generic Skylake Processor Thermal Subsystem /0/100/13 generic Intel Corporation /0/100/14 bus Sunrise Point-LP USB 3.0 xHCI Controller /0/100/14.2 generic Sunrise Point-LP Thermal subsystem /0/100/15 generic Sunrise Point-LP Serial IO I2C Controller #0 /0/100/15.1 generic Sunrise Point-LP Serial IO I2C Controller #1 /0/100/16 communication Sunrise Point-LP CSME HECI #1 /0/100/1c bridge Intel Corporation /0/100/1c/0 bridge JHL6340 Thunderbolt 3 Bridge (C step) [Alpine Ridge 2C 2016] /0/100/1c/0/0 bridge JHL6340 Thunderbolt 3 Bridge (C step) [Alpine Ridge 2C 2016] /0/100/1c/0/1 bridge JHL6340 Thunderbolt 3 Bridge (C step) [Alpine Ridge 2C 2016] /0/100/1c/0/2 bridge JHL6340 Thunderbolt 3 Bridge (C step) [Alpine Ridge 2C 2016] /0/100/1c/0/2/0 bus Intel Corporation /0/100/1c.4 bridge Sunrise Point-LP PCI Express Root Port #5 /0/100/1c.4/0 storage Lite-On Technology Corporation /0/100/1d bridge Sunrise Point-LP PCI Express Root Port #9 /0/100/1d/0 generic RTS525A PCI Express Card Reader /0/100/1d.1 bridge Intel Corporation /0/100/1d.1/0 wlp60s0 network Wireless 8265 / 8275 /0/100/1f bridge Intel Corporation /0/100/1f.2 memory Memory controller /0/100/1f.3 multimedia Intel Corporation /0/100/1f.4 bus Sunrise Point-LP SMBus /0/1 scsi0 storage /0/1/0.0.0 /dev/sda disk SD/MMC /0/1/0.0.0/0 /dev/sda disk /0/1/0.0.1 /dev/sdb disk Micro SD/M2 /0/1/0.0.1/0 /dev/sdb disk /0/2 scsi1 storage /0/2/0.0.0 /dev/cdrom disk SDRW-08U7M-U /1 power DELL NP0V36C /2 bond0 network Ethernet interface /3 enp57s0u1u2u1 network Ethernet interface lshw -c disk *-cdrom description: DVD-RAM writer product: SDRW-08U7M-U vendor: ASUS physical id: 0.0.0 bus info: scsi@1:0.0.0 logical name: /dev/cdrom logical name: /dev/sr0 version: A101 capabilities: removable audio cd-r cd-rw dvd dvd-r dvd-ram configuration: status=nodisc ------------------------------------------------------------------------ Devices ----------------------- ASUS SDRW-08U7M-U A101 (/dev/sr0, CD-R, CD-RW, CD-ROM, DVD-ROM, DVD-R, DVD-RW, DVD-R doppelschichtig, DVD+R, DVD+RW, DVD+R doppelschichtig) [DVD-ROM, DVD-R sequenziell, Zweischichtige DVD-R sequenziell, Zweischicht-DVD-R-Sprung, DVD-RAM, DVD-RW Eingeschränktes Überbrennen, DVD-RW sequenziell, DVD+RW, DVD+R, Zweischichtige DVD+R, CD-ROM, CD-R, CD-RW] [SAO, TAO, RAW, SAO/R96P, SAO/R96R, RAW/R16, RAW/R96P, RAW/R96R, Eingeschränktes Überschreiben, Sprung zwischen DVD-Schichten] [%7] System ----------------------- K3b Version: 2.0.3 KDE Version: 4.14.32 QT Version: 4.8.7 Kernel: 4.12.4-gentoo-systemrescue_sound_camera_i965_USB_Mod Used versions ----------------------- cdrecord: 3.2a06 cdrecord ----------------------- scsidev: '/dev/sr0' devname: '/dev/sr0' scsibus: -2 target: -2 lun: -2 Warning: Open by 'devname' is unintentional and not supported. Linux sg driver version: 3.5.27 SCSI buffer size: 64512 cdrecord: Warning: Cannot read drive buffer. cdrecord: Warning: The DMA speed test has been skipped. Cdrecord-ProDVD-ProBD-Clone 3.02a06 (x86_64-pc-linux-gnu) Copyright (C) 1995-2016 Joerg Schilling TOC Type: 0 = CD-DA Using libscg version 'schily-0.9'. Driveropts: 'burnfree' atapi: 1 Device type : Removable CD-ROM Version : 0 Response Format: 2 Capabilities : Vendor_info : 'ASUS ' Identifikation : 'SDRW-08U7M-U ' Revision : 'A101' Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM. Current: CD-R Profile: DVD-R/DL sequential recording Profile: DVD-R/DL layer jump recording Profile: DVD+R/DL Profile: DVD+R Profile: DVD+RW Profile: DVD-RW sequential recording Profile: DVD-RW restricted overwrite Profile: DVD-RAM Profile: DVD-R sequential recording Profile: DVD-ROM Profile: CD-RW Profile: CD-R (current) Profile: CD-ROM Profile: Removable Disk Using generic SCSI-3/mmc CD-R/CD-RW driver (mmc_cdr). Driver flags : MMC-3 SWABAUDIO BURNFREE Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R Drive buf size : 618464 = 603 KB FIFO size : 4194304 = 4096 KB pregap1: -1 Track 01: audio 18 MB (01:51.58) no preemp swab copy Track 02: audio 2 MB (00:15.37) no preemp swab copy Track 03: audio 17 MB (01:41.50) no preemp swab copy Track 04: audio 2 MB (00:17.37) no preemp swab copy Track 05: audio 3 MB (00:20.17) no preemp swab copy Track 06: audio 17 MB (01:42.14) no preemp swab copy Track 07: audio 3 MB (00:20.88) no preemp swab copy Track 08: audio 23 MB (02:17.49) no preemp swab copy Track 09: audio 27 MB (02:42.88) no preemp swab copy Track 10: audio 1 MB (00:10.08) no preemp swab copy Track 11: audio 32 MB (03:12.44) no preemp swab copy Track 12: audio 6 MB (00:38.77) no preemp swab copy Track 13: audio 20 MB (02:04.32) no preemp swab copy Track 14: audio 3 MB (00:21.18) no preemp swab copy Track 15: audio 25 MB (02:33.86) no preemp swab copy Track 16: audio 5 MB (00:32.44) no preemp swab copy Track 17: audio 18 MB (01:49.74) no preemp swab copy Track 18: audio 4 MB (00:28.32) no preemp swab copy Track 19: audio 27 MB (02:44.24) no preemp swab copy Track 20: audio 1 MB (00:11.25) no preemp swab copy Track 21: audio 26 MB (02:35.24) no preemp swab copy Track 22: audio 7 MB (00:44.36) no preemp swab copy Total size: 298 MB (29:35.68) = 133176 sectors Lout start: 299 MB (29:37/51) = 133176 sectors Current Secsize: 2048 ATIP info from disk: Indicated writing power: 5 Disk Is not unrestricted Disk Is not erasable Disk sub type: Medium Type B, low Beta category (B-) (4) ATIP start of lead in: -12369 (97:17/06) ATIP start of lead out: 359849 (79:59/74) Disk type: Short strategy type (Phthalocyanine or similar) Manuf. index: 69 Manufacturer: Moser Baer India Limited Manufacturer is guessed because of the orange forum embargo. The orange forum likes to get money for recent information. The information for this media may not be correct. Capacity Blklen/Sparesz. Format-type Type 445350 2048 0x00 No Media Present or Unknown Capacity Blocks total: 359849 Blocks current: 359849 Blocks remaining: 226673 Starting to write CD/DVD/BD at speed 24 in real SAO mode for single session. Last chance to quit, starting real write in 3 seconds. 2 seconds. 1 seconds. 0 seconds. Operation starts. Waiting for reader process to fill input buffer ... input buffer ready. BURN-Free is OFF. Turning BURN-Free on Performing OPC... Sending CUE sheet... cdrecord: WARNING: Drive returns wrong startsec (0) using -150 Writing pregap for track 1 at -150 Starting new track at sector: 0 Track 01: 0 of 18 MB written. Track 01: 1 of 18 MB written (fifo 100%) [buf 100%] 0.3x. Track 01: 2 of 18 MB written (fifo 100%) [buf 99%] 10.8x. Track 01: 3 of 18 MB written (fifo 100%) [buf 100%] 11.1x. Track 01: 4 of 18 MB written (fifo 100%) [buf 100%] 10.8x. Track 01: 5 of 18 MB written (fifo 100%) [buf 100%] 11.2x. Track 01: 6 of 18 MB written (fifo 100%) [buf 99%] 10.8x. Track 01: 7 of 18 MB written (fifo 100%) [buf 100%] 11.2x. Track 01: 8 of 18 MB written (fifo 100%) [buf 99%] 10.9x. Track 01: 9 of 18 MB written (fifo 100%) [buf 100%] 11.2x. Track 01: 10 of 18 MB written (fifo 100%) [buf 100%] 10.9x. Track 01: 11 of 18 MB written (fifo 100%) [buf 99%] 7.0x. Track 01: 12 of 18 MB written (fifo 100%) [buf 100%] 11.0x. Track 01: 13 of 18 MB written (fifo 100%) [buf 100%] 11.3x. Track 01: 14 of 18 MB written (fifo 100%) [buf 100%] 11.0x. Track 01: 15 of 18 MB written (fifo 100%) [buf 99%] 11.4x. Track 01: 16 of 18 MB written (fifo 100%) [buf 99%] 11.0x. Track 01: 17 of 18 MB written (fifo 100%) [buf 100%] 11.4x. Track 01: 18 of 18 MB written (fifo 100%) [buf 99%] 11.1x. Track 01: Total bytes read/written: 19683888/19683888 (8369 sectors). Starting new track at sector: 8369 Track 02: 0 of 2 MB written. Track 02: 1 of 2 MB written (fifo 100%) [buf 99%] 11.0x. Track 02: 2 of 2 MB written (fifo 100%) [buf 99%] 11.3x. Track 02: Total bytes read/written: 2711856/2711856 (1153 sectors). Starting new track at sector: 9522 Track 03: 0 of 17 MB written. Track 03: 1 of 17 MB written (fifo 100%) [buf 100%] 11.1x. Track 03: 2 of 17 MB written (fifo 100%) [buf 99%] 11.4x. Track 03: 3 of 17 MB written (fifo 100%) [buf 100%] 11.7x. Track 03: 4 of 17 MB written (fifo 100%) [buf 100%] 11.4x. Track 03: 5 of 17 MB written (fifo 100%) [buf 100%] 11.8x. Track 03: 6 of 17 MB written (fifo 100%) [buf 99%] 11.4x. Track 03: 7 of 17 MB written (fifo 100%) [buf 100%] 11.8x. Track 03: 8 of 17 MB written (fifo 100%) [buf 99%] 11.5x. Track 03: 9 of 17 MB written (fifo 100%) [buf 99%] 11.9x. Track 03: 10 of 17 MB written (fifo 100%) [buf 100%] 11.5x. Track 03: 11 of 17 MB written (fifo 100%) [buf 99%] 11.9x. Track 03: 12 of 17 MB written (fifo 100%) [buf 100%] 11.5x. Track 03: 13 of 17 MB written (fifo 100%) [buf 100%] 11.9x. Track 03: 14 of 17 MB written (fifo 100%) [buf 100%] 11.6x. Track 03: 15 of 17 MB written (fifo 100%) [buf 99%] 12.0x. Track 03: 16 of 17 MB written (fifo 100%) [buf 99%] 11.6x. cdrecord: Eingabe-/Ausgabefehler. write_g1: scsi sendcmd: cmd timeout after 201.391 (200) s CDB: 2A 00 00 00 41 C7 00 00 1B 00 cmd finished after 201.391s timeout 200s cdrecord: A write error occured. cdrecord: Please properly read the error message above. cdrecord: Eingabe-/Ausgabefehler. test unit ready: scsi sendcmd: no error CDB: 00 00 00 00 00 00 status: 0x2 (CHECK CONDITION) Sense Bytes: 71 00 02 00 00 00 00 0A 00 00 00 00 3A 02 00 00 Sense Key: 0x2 Not Ready, deferred error, Segment 0 Sense Code: 0x3A Qual 0x02 (medium not present - tray open) Fru 0x0 Sense flags: Blk 0 (not valid) cmd finished after 0.006s timeout 200s write track data: error after 17209584 bytes Writing time: 256.304s (00:04:16.304) Average write speed 7.2x. Min drive buffer fill was 99% Fixating... cdrecord: Eingabe-/Ausgabefehler. flush cache: scsi sendcmd: no error CDB: 35 00 00 00 00 00 00 00 00 00 status: 0x2 (CHECK CONDITION) Sense Bytes: 71 00 02 00 00 00 00 0A 00 00 00 00 3A 02 00 00 Sense Key: 0x2 Not Ready, deferred error, Segment 0 Sense Code: 0x3A Qual 0x02 (medium not present - tray open) Fru 0x0 Sense flags: Blk 0 (not valid) cmd finished after 0.005s timeout 200s cdrecord: Eingabe-/Ausgabefehler. test unit ready: scsi sendcmd: no error CDB: 00 00 00 00 00 00 status: 0x2 (CHECK CONDITION) Sense Bytes: 71 00 02 00 00 00 00 0A 00 00 00 00 3A 02 00 00 Sense Key: 0x2 Not Ready, deferred error, Segment 0 Sense Code: 0x3A Qual 0x02 (medium not present - tray open) Fru 0x0 Sense flags: Blk 0 (not valid) cmd finished after 0.002s timeout 200s Trouble flushing the cache Fixating time: 16.060s (00:00:16.060) cdrecord: fifo had 688 puts and 625 gets. cdrecord: fifo was 0 times empty and 622 times full, min fill was 95%. BURN-Free was never needed. cdrecord command: ----------------------- /usr/bin/cdrecord -v gracetime=2 dev=/dev/sr0 speed=24 -sao driveropts=burnfree scgopts=ignore-resid -useinfo -audio /tmp/kde-rene/k3b_audio_0_01.inf /tmp/kde-rene/k3b_audio_0_02.inf /tmp/kde-rene/k3b_audio_0_03.inf /tmp/kde-rene/k3b_audio_0_04.inf /tmp/kde-rene/k3b_audio_0_05.inf /tmp/kde-rene/k3b_audio_0_06.inf /tmp/kde-rene/k3b_audio_0_07.inf /tmp/kde-rene/k3b_audio_0_08.inf /tmp/kde-rene/k3b_audio_0_09.inf /tmp/kde-rene/k3b_audio_0_10.inf /tmp/kde-rene/k3b_audio_0_11.inf /tmp/kde-rene/k3b_audio_0_12.inf /tmp/kde-rene/k3b_audio_0_13.inf /tmp/kde-rene/k3b_audio_0_14.inf /tmp/kde-rene/k3b_audio_0_15.inf /tmp/kde-rene/k3b_audio_0_16.inf /tmp/kde-rene/k3b_audio_0_17.inf /tmp/kde-rene/k3b_audio_0_18.inf /tmp/kde-rene/k3b_audio_0_19.inf /tmp/kde-rene/k3b_audio_0_20.inf /tmp/kde-rene/k3b_audio_0_21.inf /tmp/kde-rene/k3b_audio_0_22.inf |
From: Erik K. <eri...@gm...> - 2017-03-14 20:50:59
|
Mark, what you want to do can be done with `dvdauthor` or `dvdwizard`, which automates the process more and uses `dvdauthor` behind the scene. If you are willing to go from the command line to a GUI, you can use `DeVeDe NG` for this purpose. This is one authoring program with more recent development, suitable for current linux distributions. Mark Knecht <mar...@gm...> schrieb am Di., 14. März 2017 um 19:12 Uhr: > On Tue, Mar 14, 2017 at 1:09 AM, Andrea Petrucci < > pet...@vi...> wrote: > > Mark Knecht ha scritto: > > Hello, > > I have a number of mp4 files that someone asked me to copy and mail > > to them. I could just do each file on a separate DVD but if possible I'd > > like to get them on a single DVD, and if possible, have the disc be > > playable on a DVD player that supports mp4 playback. > > > > I tried the simplistic, intuitive option and just tried to write them > > using a command like > > > > cdrecord file1.mp4 file2.mp4 > > > > but that failed with the message > > > > cdrecord: Virtual track 1 is not a multiple of secsize. > > > > Where do I need to look/read/study about how to do this properly? > > > > Thanks in advance, > > Mark > > > Hello, a good place to start is cdrecord -help. > If you are on linux/unix "man -M /opt/schily/share/man cdrecord" gives > you the manual (if you compiled from source, otherwise a mere "man > cdrecord" will be enough). Also check > http://cdrtools.sourceforge.net/private/man/cdrecord/index.html. > > Regarding your problem, I think you should burn an iso file, not the mp4 > files directly. > mkisofs -J -r -V NAME -o file.iso file1.mp4 file2.mp4 ... > Once done, cdrecord file.iso. > -J and -r add Joliet and Rockridge extensions to file.iso (for > compatibility reasons), -V set the name to be displayed by the iso file > (optional). > cdrecord has a lot of options (I usually pass -dao driveropts=burnfree) > > I hope it helps, > -- > Andrea Petrucci > > > Andrea, > That's a great start as it got the files on the DVD as data files. I'll > have to study mkisofs to see if there's some way to build a menu of the > videos > and make it work lmore ike a commercial DVD as the people I'd like to give > this > to are completely non-technical. I just want them to put the DVD in and be > able to choose which video to watch. > > Anyway, you've been a big help. Thanks! > > Cheers, > Mark > > > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Cdrtools-support mailing list > Cdr...@li... > https://lists.sourceforge.net/lists/listinfo/cdrtools-support > -- Erik |
From: Mark K. <mar...@gm...> - 2017-03-14 18:07:48
|
On Tue, Mar 14, 2017 at 1:09 AM, Andrea Petrucci <pet...@vi... > wrote: > Mark Knecht ha scritto: > > Hello, > > I have a number of mp4 files that someone asked me to copy and mail > > to them. I could just do each file on a separate DVD but if possible I'd > > like to get them on a single DVD, and if possible, have the disc be > > playable on a DVD player that supports mp4 playback. > > > > I tried the simplistic, intuitive option and just tried to write them > > using a command like > > > > cdrecord file1.mp4 file2.mp4 > > > > but that failed with the message > > > > cdrecord: Virtual track 1 is not a multiple of secsize. > > > > Where do I need to look/read/study about how to do this properly? > > > > Thanks in advance, > > Mark > > > Hello, a good place to start is cdrecord -help. > If you are on linux/unix "man -M /opt/schily/share/man cdrecord" gives > you the manual (if you compiled from source, otherwise a mere "man > cdrecord" will be enough). Also check > http://cdrtools.sourceforge.net/private/man/cdrecord/index.html. > > Regarding your problem, I think you should burn an iso file, not the mp4 > files directly. > mkisofs -J -r -V NAME -o file.iso file1.mp4 file2.mp4 ... > Once done, cdrecord file.iso. > -J and -r add Joliet and Rockridge extensions to file.iso (for > compatibility reasons), -V set the name to be displayed by the iso file > (optional). > cdrecord has a lot of options (I usually pass -dao driveropts=burnfree) > > I hope it helps, > -- > Andrea Petrucci > > > Andrea, That's a great start as it got the files on the DVD as data files. I'll have to study mkisofs to see if there's some way to build a menu of the videos and make it work lmore ike a commercial DVD as the people I'd like to give this to are completely non-technical. I just want them to put the DVD in and be able to choose which video to watch. Anyway, you've been a big help. Thanks! Cheers, Mark |
From: Andrea P. <pet...@vi...> - 2017-03-14 08:09:56
|
Mark Knecht ha scritto: > Hello, > I have a number of mp4 files that someone asked me to copy and mail > to them. I could just do each file on a separate DVD but if possible I'd > like to get them on a single DVD, and if possible, have the disc be > playable on a DVD player that supports mp4 playback. > > I tried the simplistic, intuitive option and just tried to write them > using a command like > > cdrecord file1.mp4 file2.mp4 > > but that failed with the message > > cdrecord: Virtual track 1 is not a multiple of secsize. > > Where do I need to look/read/study about how to do this properly? > > Thanks in advance, > Mark > Hello, a good place to start is cdrecord -help. If you are on linux/unix "man -M /opt/schily/share/man cdrecord" gives you the manual (if you compiled from source, otherwise a mere "man cdrecord" will be enough). Also check http://cdrtools.sourceforge.net/private/man/cdrecord/index.html. Regarding your problem, I think you should burn an iso file, not the mp4 files directly. mkisofs -J -r -V NAME -o file.iso file1.mp4 file2.mp4 ... Once done, cdrecord file.iso. -J and -r add Joliet and Rockridge extensions to file.iso (for compatibility reasons), -V set the name to be displayed by the iso file (optional). cdrecord has a lot of options (I usually pass -dao driveropts=burnfree) I hope it helps, -- Andrea Petrucci |