pBurn 4.3.19

Audio editors, music players, video players, burning software, etc.
Message
Author
User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#316 Post by zigbert »

disciple wrote:"Video Disc" is grayed out in Dingo
Yes, you're right.

Sigmund

dionicio
Posts: 26
Joined: Mon 29 Oct 2007, 18:05

cheksum worries

#317 Post by dionicio »

"growisofs is a frontend of mkisofs and cdrecord. It means it can't do anything else than combine mkisofs with a pipe to cdrecord. It also autodetect settings for multisession, and set other options (as burnfree) as default.

But to your case. Do I understand you right: Copy a disk with growisofs, and the new copy is bigger than the original. Copy with cdrecord, both are equal.

Are you into this enough to give us an example and show us the commands with growisofs and mkisofs/cdrecord."

..............................

Sigmund, sorry it is until now that I go on with this...

Allow me to use this real-time kernel distro as an example:
ubuntustudio-8.04-alternate-i386.iso
size: 1 153 828 864 bytes
md5sum: 55e4d7be543b0a228c36718b90a6e6d6

Using default burning options on a DVD+R:
growisofs -speed=4 -dvd-compat -Z /dev/hda="/mnt/sda7/ubuntustudio/ubuntustudio-8.04-alternate-i386.iso"
making a dd copy gives this file properties:
size: 1 153 859 584 bytes
md5sum: b70f6d9e22ed468a4217f6b72f62cd2c

Using default burning options on a DVD-R:
growisofs -speed=4 -dvd-compat -Z /dev/hda="/mnt/sda7/ubuntustudio/ubuntustudio-8.04-alternate-i386.iso"
making a dd copy gives this file properties:
size: 1 153 859 584 bytes
md5sum: b70f6d9e22ed468a4217f6b72f62cd2c

Using edited burning options on a DVD-R:
cdrecord -dao dev=ATAPI:/dev/hda "/mnt/sda7/ubuntustudio/ubuntustudio-8.04-alternate-i386.iso"
making a dd copy gives this file properties:
size: 1 153 828 864 bytes
md5sum: 55e4d7be543b0a228c36718b90a6e6d6

Only using the classic cdrecord without burnfree renders the same
original size and checksum.

Is this important?

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#318 Post by disciple »

It interesting that you get the same size every time (well at least twice) with growisofs.
Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#319 Post by zigbert »

dionicio wrote:Only using the classic cdrecord without burnfree renders the same
original size and checksum.
Does this mean that turning on burnfree gives the difference. Growisofs turns burnfree on by default.

nice report!!!
Sigmund

disciple
Posts: 6984
Joined: Sun 21 May 2006, 01:46
Location: Auckland, New Zealand

#320 Post by disciple »

Apparently if you don't eject the disc after burning you won't find the correct checksum.
Presumably that isn't your problem?

You seemed to imply the problem is just with DVD media. Is that correct, or is it just that you only use DVD media?
Do you know a good gtkdialog program? Please post a link here

Classic Puppy quotes

ROOT FOREVER
GTK2 FOREVER

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#321 Post by zigbert »

Version 1.9.0
see main post

User avatar
prit1
Posts: 542
Joined: Fri 04 Jan 2008, 00:10
Location: Los Angeles

#322 Post by prit1 »

@zigbert: You keep updating Pburn faster than Barry can catchup .. I just read on his blog today that he updated to Pburn 1.8.0 and you are already on 1.9.0 ... LOL .:)
[url=http://macpup.org][b]Macpup - The beauty of linux[/b][/url] [b] | [/b] [url=http://pritlog.com/][b]Pritlog - Simple blog app[/b][/url]

User avatar
Nathan F
Posts: 1764
Joined: Wed 08 Jun 2005, 14:45
Location: Wadsworth, OH (occasionally home)
Contact:

#323 Post by Nathan F »

I get the following in a message window every time I try to add files or directories using the file browser:

Code: Select all

Nothing to add.
Pburn can't open directories or files from imported sessions.
Started with 1.8/0 (I think) and continues with 1.9.0. No errors on the command line. This is in Grafpup, so my guess is some small utility might be missing that is now in Puppy.

Nathan
Bring on the locusts ...

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#324 Post by zigbert »

could it be that grafpup uses 'ls' from busybox and it doesn't support -A1 parameter. Line 410 in /usr/local/pburn/func says:

Code: Select all

ls -A1 "$DIR" > $WORKDIR/pburn-tmp
Sigmund

User avatar
Nathan F
Posts: 1764
Joined: Wed 08 Jun 2005, 14:45
Location: Wadsworth, OH (occasionally home)
Contact:

#325 Post by Nathan F »

No, I put the real ls binary in a while back and it does accept that parameter.

Nathan
Bring on the locusts ...

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#326 Post by zigbert »

I will try the latest Grafpup, and take a look.

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#327 Post by zigbert »

Nathan

What made the trouble was this:
cat $WORKDIR/pburn-tmp | grep "$SELECTED_FILE" > $WORKDIR/pburn-tmp
if I changed it to use 2 different tmp-files
cat $WORKDIR/pburn-tmp2 | grep "$SELECTED_FILE" > $WORKDIR/pburn-tmp
everything works.

Grafpup is a beautiful OS. Multiuser works great. The only thing that stroke my mind, is that you are a strick man. Why do Pwireless need root access?

I have also fixed the Pburn installation to work within a multiuser system.

Sigmund

User avatar
Nathan F
Posts: 1764
Joined: Wed 08 Jun 2005, 14:45
Location: Wadsworth, OH (occasionally home)
Contact:

#328 Post by Nathan F »

Sigmund,

I only found one instance of that particular line, in the "func" script. Changed it as you mentioned, but still seem to have the same error. I went back and found that whatever causes the problem is between 1.7.0 and 1.8.0. I'll do a diff on the files and take a little peek at what has changed, perhaps I can track it down.

Other than occasional regressions like this I'm very impressed with Pburn. And thanks for the comments on Grafpup. About wireless and root, I haven't had time to check into optaining an ip address as a non-root user yet. If it turns out not to be too hard and doesn't leave too many security holes I'll make some changes and get rid of the call to gksu. I do know that as of now dhcpcd requires root access, and for a wired connection I'm not sure I would want that changed. Well ifconfig requires it too, to bring an interface up or down, and I think iwconfig requires it to set up your essid. A possible solution might be to allow users to run pwireless with sudo and no password, then there would be no need to enter the root password. I'll have to think on any possible ramifications of that approach.

Nathan
Bring on the locusts ...

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#329 Post by zigbert »

Nathan

I changed the given code in "func" line 416, 417, 418, 419. Also had to change 410 and 413 to point to ../tmp2 instead of ../tmp. This worked for me in Grafpup 201 alpha2.


Regarding Grafpup and root, I just find it strange that I can't connect to internet without root access. If I want to set up a multiuser system, my wife would nail me if she had to type 'something' to get on the bloody web. :evil:

Sigmund

User avatar
Nathan F
Posts: 1764
Joined: Wed 08 Jun 2005, 14:45
Location: Wadsworth, OH (occasionally home)
Contact:

#330 Post by Nathan F »

Thanks, I'll maaaaaake the changes and see what I get. And yes, I understand what you're saying about wireless.

Nathan
Bring on the locusts ...

User avatar
Nathan F
Posts: 1764
Joined: Wed 08 Jun 2005, 14:45
Location: Wadsworth, OH (occasionally home)
Contact:

#331 Post by Nathan F »

Working now, thanks.

Nathan
Bring on the locusts ...

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#332 Post by zigbert »

Version 1.9.1
See main post

User avatar
ttuuxxx
Posts: 11171
Joined: Sat 05 May 2007, 10:00
Location: Ontario Canada,Sydney Australia
Contact:

#333 Post by ttuuxxx »

zigbert wrote:Version 1.9.1
See main post
Hi Zigibert

Just wondering about the dvd features, Can it turn a dvd 9 to one dvd 5 disk? Like remove subtitles, Menus, extra audio, extra features? and only have the movie? That way you get the best quality and it saves me from pressing all the buttons and watching the stupid ads at the start of the movie every time my daughter wants to watch a movie.
Thanks for all you've done, Pburn is the best puppy burner period and almost the best for all of Linux, But for the size of it and what it can do, Pburn wins hands down.
Great product
ttuuxxx
http://audio.online-convert.com/ <-- excellent site
http://samples.mplayerhq.hu/A-codecs/ <-- Codec Test Files
http://html5games.com/ <-- excellent HTML5 games :)

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#334 Post by zigbert »

Can it turn a dvd 9 to one dvd 5 disk? Like remove subtitles, Menus, extra audio, extra features? and only have the movie?
I have to admit, I don't know 'anything' about video-copying. What is the difference between dvd 9 and dvd 5? :oops: But YES, you guess you can...

Image

User avatar
ttuuxxx
Posts: 11171
Joined: Sat 05 May 2007, 10:00
Location: Ontario Canada,Sydney Australia
Contact:

#335 Post by ttuuxxx »

zigbert wrote:
Can it turn a dvd 9 to one dvd 5 disk? Like remove subtitles, Menus, extra audio, extra features? and only have the movie?
I have to admit, I don't know 'anything' about video-copying. What is the difference between dvd 9 and dvd 5? :oops: But YES, you guess you can...
Dvd9 is dual layer almost twice the size of dvd5
That way they can added extra features
-Behind the scenes
-Out-takes
-Internet stuff
-Alternative endings
Plus ads etc

when you remove all the extras from a dvd9 you usually get a bit over dvd5 about an extra 5-20% o the quality goes down just a bit, not really noticeable. And it saves you from splitting a movie into 2 dvd5 disk.
Plus you just put the movie in and it starts straight away, no need for menu selecting with the remote. Its just a lot nicer.
ttuuxxx
http://audio.online-convert.com/ <-- excellent site
http://samples.mplayerhq.hu/A-codecs/ <-- Codec Test Files
http://html5games.com/ <-- excellent HTML5 games :)

Post Reply