Search found 4 matches

by leotan
Tue 03 Sep 2013, 04:20
Forum: Bugs ( Submit bugs )
Topic: Xdialog error using either remaster method
Replies: 10
Views: 6460

Wow, this is an ancient bug. Sorry to bring this thread back to life but the bug is still current for puppy 528 at least and this thread is at the top of the Google results so I think it's better to post the solution here. There's a little bug in remasterpup versions 2 & 3 that causes it to abor...
by leotan
Tue 03 Sep 2013, 04:12
Forum: Utilities
Topic: remasterpup3: new version of Puppy live-CD remaster script
Replies: 5
Views: 13820

There's a little bug in remasterpup versions 2 & 3 that causes it to abort with an Xdialog usage error message whenever there is an ISO image mounted. In particular, there's a botched regex in the handling of the VIRTUALCD variable. To fix it, replace where it says: sed -e 's/on[ ].*+//' with th...
by leotan
Tue 03 Sep 2013, 04:09
Forum: Users ( For the regulars )
Topic: Remastering doesn't work in 525 or 528
Replies: 24
Views: 9967

I'm late but this was caused by a bug in remasterpup versions 2 & 3.
There's a botched regex in the handling of the VIRTUALCD variable.
To fix it, replace where it says:

Code: Select all

	
sed -e 's/on[ ].*+//'	
with this:

Code: Select all

	
sed -e 's/on [ ]*//'	
(mind the blanks).
by leotan
Tue 03 Sep 2013, 04:06
Forum: Users ( For the regulars )
Topic: How to remaster without CD directly from ISO on HD?
Replies: 3
Views: 2490

This is a bug in remasterpup versions 2 & 3.
There's a botched regex in the handling of the VIRTUALCD variable.
To fix it, replace where it says:

Code: Select all

sed -e 's/on[ ].*+//'
with this:

Code: Select all

sed -e 's/on [ ]*//'
(mind the blanks).