Author |
Message |
BarryK
Puppy Master

Joined: 09 May 2005 Posts: 8526 Location: Perth, Western Australia
|
Posted: Wed 26 Dec 2007, 03:49 Post subject:
|
|
zigbert wrote: | But right now, I don't know any other way to detect a multisession disc...HELP |
I'm trying to recall the details when I was working on that stuff... yes, there was a problem with trying to determine a multisession disc.
But, do you want to detect if it is still open for further burning, or whether it has multiple tracks burnt on it?
'cddetect' returns some info about the tracks, I don't know if that is helpful.
I don't have to stay with cdrkit, I can move over to cdrtools if that is better. Note about the new program names in cdrkit, I kept the old names as symlinks, so no need to use the new names -- makes it easier for us to swap between the two packages.
_________________ http://bkhome.org/news/
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Wed 26 Dec 2007, 08:19 Post subject:
|
|
Ok, I start to get the grip of this.
Code: | CDINFO="`cddetect -d$BURNDEV`"
DVDINFO="`dvd+rw-mediainfo $BURNDEV`"
...if CD...
if [ "`echo -n "$CDINFO" | grep "MODE21"`" ]; then #MODE21 is multisession
export SECTIONS="`cdrecord dev=$BURNDEV -msinfo 2> /dev/null | grep -F ","`" #get previous session
fi
...if DVD...
if [ "`echo -n "$DVDINFO" | grep "Disc status" | grep "appendable"`" ]; then
export SECTIONS="`cdrecord dev=$BURNDEV -msinfo 2> /dev/null | grep -F ","`" #get previous session
fi |
I have to do some burning in dingo before 0.7.
Now you can choose cdrtools or cdrkit. I guess something must be better since someone forked the original project. I remember Nathan spoke positive about wodim when he made his GpRip.
Sigmund
_________________ Stardust resources
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Thu 27 Dec 2007, 05:30 Post subject:
|
|
Version 0.7 is uploaded. See main post.
_________________ Stardust resources
|
Back to top
|
|
 |
BarryK
Puppy Master

Joined: 09 May 2005 Posts: 8526 Location: Perth, Western Australia
|
Posted: Thu 27 Dec 2007, 19:21 Post subject:
|
|
I've gone back to cdrtools, see my latest blog post.
I'll try v0.7 now!
Note, with v0.6, I was able to burn an iso file to DVD, but when I wanted to burn a directory it got to the final "burn data" button then failed -- a error message popped up briefly in a window then immediately disappeared. That was using cdrtools.
_________________ http://bkhome.org/news/
|
Back to top
|
|
 |
plinej
Joined: 13 Aug 2006 Posts: 1554
|
Posted: Thu 27 Dec 2007, 19:25 Post subject:
|
|
I just posted to your blog but figured I'd post here too. I've burned at least 10 data dvds, all of which contained directories. I used Pburn 0.6 and prior in Dingo w/ cdrkit. I didn't experience any problems whatsoever.
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Thu 27 Dec 2007, 20:03 Post subject:
|
|
I'm already onto 0.8 since burning CD on-the-fly was broken.
Cdrtools makes life easier for now, but I'll try to pass the cdrkit-trouble as well. The problem so far has been to detect if a CD is a valid multisession disc (without using cdrecord -msinfo...). I thought I got it when 'cddetect' looked for burnmode 21. But then I realized that cdrecord parameter -data forces burnmode 1, and disc still supports multisession.
BarryK wrote: | a error message popped up briefly in a window then immediately disappeared. | That should be fixed for 0.7.
Sigmund
_________________ Stardust resources
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Sat 29 Dec 2007, 12:15 Post subject:
|
|
Version 0.8 is uploaded. See main post.
_________________ Stardust resources
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Sat 05 Jan 2008, 15:56 Post subject:
|
|
Version 0.9.0 is uploaded. See main post.
_________________ Stardust resources
|
Back to top
|
|
 |
MU

Joined: 24 Aug 2005 Posts: 13648 Location: Karlsruhe, Germany
|
Posted: Sun 06 Jan 2008, 17:04 Post subject:
|
|
Good work.
Would be fine, if it could detect language-settings automatically.
Like:
Code: | lng=`echo $LANG | sed "s/\(..\).*/\1/"`
if [ "$lng" == "de" ];then
languagefile="deutsch"
fi
|
I attach the german translation
Mark
Description |
|

Download |
Filename |
deutsch.tar.gz |
Filesize |
3.06 KB |
Downloaded |
693 Time(s) |
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Mon 07 Jan 2008, 14:13 Post subject:
|
|
MU wrote: | Would be fine, if it could detect language-settings automatically. | Of course
Your translation does not include the help file, so I'll attach the english help for info boxes and documentation.
Thank you
Sigmund
_________________ Stardust resources
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Mon 07 Jan 2008, 14:18 Post subject:
|
|
Where can I find the list of available $LANG values?
_________________ Stardust resources
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Mon 07 Jan 2008, 16:24 Post subject:
|
|
...and how can I change the $LANG variable?
_________________ Stardust resources
|
Back to top
|
|
 |
MU

Joined: 24 Aug 2005 Posts: 13648 Location: Karlsruhe, Germany
|
Posted: Mon 07 Jan 2008, 16:33 Post subject:
|
|
echo $LANG
That shows the current.
To see all, you had to run "chooselocale" from the menu.
This downloads a package with all available ones.
You then see all locale as folders in /usr/lib/locale.
It is set in /etc/profile
In a console you can override it for the programs running in that console:
export LANG=de_DE
or
export LANG=en_US
Mark
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Mon 07 Jan 2008, 18:55 Post subject:
|
|
Thank you
Sigmund
_________________ Stardust resources
|
Back to top
|
|
 |
gray

Joined: 23 Feb 2007 Posts: 318 Location: Adelaide - South Australia
|
Posted: Thu 10 Jan 2008, 02:00 Post subject:
Check media problem |
|
Pburn is just what puppy needed, but I have noticed a strange problem when trying to burn a cd while my ide hard drive (ntfs XP) is mounted. At the checking media pop up there is a 5 to 10 minute pause while pburn tries to determine whether the hard drive is a cd/dvd drive.
Another problem is that when the message lines of x out of y Mb burned are displayed they are unreadable as only the top half of each line is shown (as if the new line is not printed far enough below the previous one due to insufficient line spacing).
|
Back to top
|
|
 |
|