The time now is Wed 25 Apr 2018, 14:41
All times are UTC - 4 |
Page 128 of 157 [2342 Posts] |
Goto page: Previous 1, 2, 3, ..., 126, 127, 128, 129, 130, ..., 155, 156, 157 Next |
Author |
Message |
charlie6

Joined: 30 Jun 2008 Posts: 1199 Location: Saint-Gérard / Walloon part of Belgium
|
Posted: Tue 29 Jan 2013, 15:27 Post subject:
|
|
above post continued ...
BUT
if placing gtkdialog-0.8.4 in /usr/bin/ instead , then here get pburn-3.7.13 (as also pburn-3.7.12) running OK ...
I'm a bit puzzled about this (gtkdialog pets placing the application in /usr/sbin then --> pburn returns broken pipr error ; OK if placed in /usr/bin -->?? )
charlie
|
Back to top
|
|
 |
Dromeno
Joined: 12 Sep 2008 Posts: 543
|
Posted: Thu 31 Jan 2013, 07:30 Post subject:
gtkdialog 0.8.3 |
|
gtkdialog 0.8.3 is named as a dependency. But I can not find a pet for it yet. Does it exist?
|
Back to top
|
|
 |
Dromeno
Joined: 12 Sep 2008 Posts: 543
|
Posted: Thu 31 Jan 2013, 07:36 Post subject:
Found it |
|
oops sorry, just found it here
http://www.murga-linux.com/puppy/viewtopic.php?mode=attach&id=63543
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 4989 Location: Ontario
|
Posted: Mon 04 Feb 2013, 17:25 Post subject:
piping error |
|
I got the same pipe error as Charlie6 got when I tried the latest pburn
with Exprimo.
I'll have to check if placing gtkdialog in /usr/bin/ corrects the
problem?? ...but that's odd.
______________________________________________________
Last edited by don570 on Tue 05 Feb 2013, 17:18; edited 1 time in total
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Mon 04 Feb 2013, 17:47 Post subject:
|
|
Version 3.7.14
See main post
Changelog 3.7.14
- Bugfix: Rely on ONLY gtkdialog as executable - not gtkdialog4 (thanks to Charlie6 and don570)
_________________ Stardust resources
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Thu 07 Feb 2013, 08:41 Post subject:
|
|
Version 3.7.15
See main post
Changelog
- Bugfix: Calculate size of directory content when tmpdir is on another filesystem than Puppy.
- Bugfix: Calculate free space in bar when tmpdir is on another filesystem than Puppy.
_________________ Stardust resources
|
Back to top
|
|
 |
charlie6

Joined: 30 Jun 2008 Posts: 1199 Location: Saint-Gérard / Walloon part of Belgium
|
Posted: Sat 09 Mar 2013, 09:13 Post subject:
blanking cd complete |
|
Hi Sigmund!
this pburn works awesome !
I regularly need to blank cd-rw's (with all these puppies stored since 2008 and remasterings ... ).
I noticed that when selecting «blank complete» (in place of «fast blank») i have also to select the «advanced» thumbnail, and there to click «refresh command» to activate the «all» blanking present in the command line field.
If not, pburn blanks «fast», even if the «complete» checkbox has been checked in the «erase disk» thumbnail.
Some CD-RW's here (Philips brand CD-RW's) need that «workaround»; otherwise they are not full blanked ---> not possible to burn them.
I did not notice this with the Verbatim's CD-RW's.
cheers, Charlie
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Sat 09 Mar 2013, 16:50 Post subject:
|
|
Charlie
Thank you for the report
Will look into this
Sigmund
_________________ Stardust resources
|
Back to top
|
|
 |
jamesbond
Joined: 26 Feb 2007 Posts: 3146 Location: The Blue Marble
|
Posted: Tue 12 Mar 2013, 01:43 Post subject:
|
|
Ziggy,
the latest mkisofs from cdrtools (not cdrkit) doesn't support "-allow-limited-size" option, this causes UDF buring to fail if one uses mkisofs from cdrtools instead of cdrkit. I don't know what's the equivalent option, I presume that with cdrtools it will automatically work that way even without that option.
cheers!
_________________ Fatdog64, Slacko and Puppeee user. Puppy user since 2.13.
Contributed Fatdog64 packages thread.
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Wed 13 Mar 2013, 03:26 Post subject:
|
|
Charlie
I could not see any issues with the blanking command.
Be aware that the command in the 'Advanced' tab only is used if the checkbox 'Allow manual edit' is turned on.
To check this fully, you can look into the file /root/.pburn/tmp/exec. This file holds the executing burn-command.
Do I miss something?
Sigmund
_________________ Stardust resources
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Wed 13 Mar 2013, 03:38 Post subject:
|
|
Jamesbond
Thank you for the report.
I have made a simple check for the -allow-limited-size switch.
func_burn_option line 197
Code: | #Check for huge files (over 4Gb) that requires udf switch on
if [ $UDF = true ] || [ "`find -L "$TMPDIR" -size +4G`" ]; then
UDF_OPTS="-udf"
[ $MKISOFS = genisoimage ] && UDF_OPTS="$UDF_OPTS -allow-limited-size" #only cdrkit uses this switch
UDF=true #activate checkbox if large file is detected
fi
|
func_build_command line 357
Code: | if [ "$MEDIATYPE" = "DVD" ] && [ "$UDF" = "true" ]; then #support of files bigger than 4GB
[ $MKISOFS = genisoimage ] && echo -n "-allow-limited-size " >> $WORKDIR/parameters #only cdrkit uses this switch
echo -n "-udf " >> $WORKDIR/parameters
fi |
Sigmund
_________________ Stardust resources
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Thu 14 Mar 2013, 14:03 Post subject:
|
|
Version 3.7.16
See main post
Changelog
- Bugfix: Burn UDF with cdr-tools backend (thanks to jamesbond)
_________________ Stardust resources
|
Back to top
|
|
 |
jamesbond
Joined: 26 Feb 2007 Posts: 3146 Location: The Blue Marble
|
Posted: Thu 14 Mar 2013, 16:58 Post subject:
|
|
Thanks Sigmund for your prompt response.
That should fix it.
cheers!
_________________ Fatdog64, Slacko and Puppeee user. Puppy user since 2.13.
Contributed Fatdog64 packages thread.
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 6541 Location: Valåmoen, Norway
|
Posted: Fri 29 Mar 2013, 12:31 Post subject:
|
|
Version 3.7.17
See main post
Changelog
- Bugfix: Info button in burn-option dialog doesn't work.
- Add finnish (zephyr2) to the credits
- Dependency check should use yellow (not red) for missing optional dependencies.
_________________ Stardust resources
|
Back to top
|
|
 |
gcmartin
Joined: 14 Oct 2005 Posts: 6730 Location: Earth
|
Posted: Mon 01 Apr 2013, 00:56 Post subject:
|
|
This may have already been answered elsewhere, but, I ran into a use issue on Pburn version 3.7.15 in FATDOG620.
My camera uses mini DVD+RW (30minute - 1.4GB)
I was trying to blank a TDK DVD+RW and when it reach 99.4% of the DVD's disc size, it fails with the following screens below.
Note: as one can see, there is plenty of temp space, even for a 1.4GB disc to be blanked.
PBurn log is follows:
Code: | Pburn version 3.7.15
###################################################
COMMAND:
###################################################
growisofs -use-the-force-luke=notray -Z /dev/sr1=/dev/zero
###################################################
OUTPUT:
###################################################
Executing 'builtin_dd if=/dev/zero of=/dev/sr1 obs=32k seek=0'
/dev/sr1: restarting DVD+RW format...
/dev/sr1: "Current Write Speed" is 4.1x1352KBps.
31457280/1463386112 ( 2.1%) @4.0x, remaining 4:33 RBU 100.0% UBU 1.9%
49938432/1463386112 ( 3.4%) @4.0x, remaining 4:14 RBU 100.0% UBU 94.4%
68419584/1463386112 ( 4.7%) @4.0x, remaining 4:04 RBU 100.0% UBU 94.4%
86900736/1463386112 ( 5.9%) @4.0x, remaining 4:13 RBU 100.0% UBU 94.4%
o
o
o
o
o
1398571008/1463386112 (95.6%) @4.0x, remaining 0:11 RBU 100.0% UBU 94.4%
1417052160/1463386112 (96.8%) @4.0x, remaining 0:08 RBU 100.0% UBU 94.4%
1435533312/1463386112 (98.1%) @4.0x, remaining 0:05 RBU 100.0% UBU 94.4%
1454014464/1463386112 (99.4%) @4.0x, remaining 0:01 RBU 100.0% UBU 94.4%
:-[ WRITE@LBA=ae730h failed with SK=5h/LOGICAL BLOCK ADDRESS OUT OF RANGE]: No space left on device
:-( write failed: No space left on device
/dev/sr1: flushing cache
/dev/sr1: stopping de-icing
/dev/sr1: writing lead-out | Here to help
Description |
Select Blank DVD button near top of window |
Filesize |
47.45 KB |
Viewed |
529 Time(s) |

|
Description |
Error message |
Filesize |
25.94 KB |
Viewed |
516 Time(s) |

|
_________________ Get ACTIVE Create Circles; Do those good things which benefit people's needs!
We are all related ... Its time to show that we know this!
3 Different Puppy Search Engines or use DogPile
|
Back to top
|
|
 |
|
Page 128 of 157 [2342 Posts] |
Goto page: Previous 1, 2, 3, ..., 126, 127, 128, 129, 130, ..., 155, 156, 157 Next |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|