Saluki

A home for all kinds of Puppy related projects
Message
Author
User avatar
pemasu
Posts: 5474
Joined: Wed 08 Jul 2009, 12:26
Location: Finland

#2401 Post by pemasu »

How do I use the Delta file to generate a new updated .iso please? I have installed the Xdelta package.
http://www.murga-linux.com/puppy/viewtopic.php?t=52232

User avatar
8-bit
Posts: 3406
Joined: Wed 04 Apr 2007, 03:37
Location: Oregon

#2402 Post by 8-bit »

Dave, fire up xdelta, drag the first ISO file that needs to be the version before the delta file that was made to update to the new iso to the top box.
Drag the delta file to the second box.
Click Create.
It should then make a new ISO with the updated name and your older ISO will be preserved also.

User avatar
DaveS
Posts: 3685
Joined: Thu 09 Oct 2008, 16:01
Location: UK

#2403 Post by DaveS »

8-bit wrote:Dave, fire up xdelta, drag the first ISO file that needs to be the version before the delta file that was made to update to the new iso to the top box.
Drag the delta file to the second box.
Click Create.
It should then make a new ISO with the updated name and your older ISO will be preserved also.
Ahhh... now I tried that and got an error message "old file does not exist"
That is what prompted my post...
Spup Frugal HD and USB
Root forever!

User avatar
shelezyaka
Posts: 52
Joined: Tue 14 Feb 2012, 13:57
Location: Ukrainian

#2404 Post by shelezyaka »

Do not suffer, the file luki17-18.delta this time not working. I downloaded the first delta, it is not established. Then he downloaded the ISO and made ​​a delta, it is different from the laid on the site.

User avatar
DaveS
Posts: 3685
Joined: Thu 09 Oct 2008, 16:01
Location: UK

#2405 Post by DaveS »

Thanks... nothing I do makes this work. Guess the delta file is corrupt.
Spup Frugal HD and USB
Root forever!

User avatar
smokey01
Posts: 2813
Joined: Sat 30 Dec 2006, 23:15
Location: South Australia :-(
Contact:

#2406 Post by smokey01 »

DaveS,

There are a couple of problems. First dragging and dropping doesn't work with Xdelta_gui and XFCE and secondly the format that jemimah has used doesn't seem to be recognised by the Xdelta_gui.

I modified Barry Xdelta_gui to work in Saluki, see attached. Simply replace the original with this one.

I have also added a new Custom Action in Thunar, called Xdelta.

See here: http://murga-linux.com/puppy/viewtopic. ... 066#616066

In Thunar just select/highlight the old iso and the delta file, right click on Xdelta in the menu, click generate and a new iso will be created.
Attachments
xdelta_gui.gz
(2.97 KiB) Downloaded 178 times

User avatar
DaveS
Posts: 3685
Joined: Thu 09 Oct 2008, 16:01
Location: UK

#2407 Post by DaveS »

smokey01 wrote:DaveS,

There are a couple of problems. First dragging and dropping doesn't work with Xdelta_gui and XFCE and secondly the format that jemimah has used doesn't seem to be recognised by the Xdelta_gui.

I modified Barry Xdelta_gui to work in Saluki, see attached. Simply replace the original with this one.

I have also added a new Custom Action in Thunar, called Xdelta.

See here: http://murga-linux.com/puppy/viewtopic. ... 066#616066

In Thunar just select/highlight the old iso and the delta file, right click on Xdelta in the menu, click generate and a new iso will be created.
Thanks... on it
Spup Frugal HD and USB
Root forever!

User avatar
Geoffrey
Posts: 2355
Joined: Sun 30 May 2010, 08:42
Location: Queensland

Re: XDesktop Icon Restorer is sooo cool

#2408 Post by Geoffrey »

Pete22 wrote:Geoffrey,

I just saw your post,

This program works Wonders!!!!!

Thank you sooooo much.

Pete
I'm glad it works for you, it was trial and error getting it to work, but persistence paid off, in the end it was something quite simple.

User avatar
mavrothal
Posts: 3096
Joined: Mon 24 Aug 2009, 18:23

PPM; search pet descriptions too

#2409 Post by mavrothal »

I always thought that would be nice if you could search for a package in PPM not only by the pet name (that quite often is pretty cryptic) but also in the pet description.
Also would be nice if the results also include the description.
This little patch of findnames.sh does it both.
(take 4: eliminates double entries)

Code: Select all

--- a/usr/local/petget/findnames.sh	2012-03-30 17:23:02.000000000 +0300
+++ b/usr/local/petget/findnames.sh	2012-04-08 19:56:05.329195702 +0300
@@ -12,6 +12,9 @@
 . /root/.packages/DISTRO_PET_REPOS #has PET_REPOS, PACKAGELISTS_PET_ORDER
 
 entryPATTERN="`echo -n "$ENTRY1" | sed -e 's%\\-%\\\\-%g' -e 's%\\.%\\\\.%g' -e 's%\\*%.*%g'`"
+if [ "$entryPATTERN" = "" ] ; then
+ exit 0
+fi
 
 CURRENTREPO="`cat /tmp/petget_filterversion`" #search here first.
 REPOLIST="${CURRENTREPO} `cat /tmp/petget_active_repo_list | grep -v "$CURRENTREPO" | tr '\n' ' '`"
@@ -20,19 +23,25 @@
 for ONEREPO in $REPOLIST
 do
  FNDENTRIES="`cat /root/.packages/Packages-${ONEREPO}| cut -f1 -d\| | grep -i "$entryPATTERN"`"
- if [ "$FNDENTRIES" != "" ];then
-  FIRSTCHAR="`echo "$FNDENTRIES" | cut -c 1 | tr '\n' ' ' | sed -e 's% %%g'`"
-  #write these just in case needed...
-  ALPHAPRE="`cat /tmp/petget_pkg_first_char`"
-  #if [ "$ALPHAPRE" != "ALL" ];then
-  # echo "$FIRSTCHAR" > /tmp/petget_pkg_first_char
-  #fi
-  #echo "ALL" > /tmp/petget_filtercategory
-  echo "$ONEREPO" > /tmp/petget_filterversion #ex: slackware-12.2-official
-  #this is read when update TREE1 in pkg_chooser.sh...
-  echo "$FNDENTRIES" | cut -f 1,10 -d '|' > /tmp/filterpkgs.results
-  FNDIT=yes
-  break
+ FNDENTRIES_DES="`cat /root/.packages/Packages-${ONEREPO}| cut -f10 -d\| | grep -i "$entryPATTERN"`"
+ if [[ "$FNDENTRIES" != "" ]] || [[ "$FNDENTRIES_DES" != "" ]] ; then
+ echo "$ONEREPO" > /tmp/petget_filterversion #ex: slackware-12.2-official
+  if [ "$FNDENTRIES" != "" ] ; then
+   FIRSTCHAR="`echo "$FNDENTRIES" | cut -c 1 | tr '\n' ' ' | sed -e 's% %%g'`"
+   #write these just in case needed...
+   ALPHAPRE="`cat /tmp/petget_pkg_first_char`"
+   #this is read when update TREE1 in pkg_chooser.sh...
+   cat /root/.packages/Packages-${ONEREPO}| grep "$FNDENTRIES" | cut -f 1,10 -d '|' > /tmp/filterpkgs.results
+   #this is read when update TREE1 in pkg_chooser.sh...
+   FNDIT=yes
+   if [ "$FNDENTRIES_DES" != "" ] ; then
+    cat /root/.packages/Packages-${ONEREPO}| grep "$FNDENTRIES_DES" | grep -v "$FNDENTRIES" | cut -f 1,10 -d '|' >> /tmp/filterpkgs.results
+    FNDIT=yes 
+    if [ "$FNDIT" = "yes" ] ; then
+     break
+    fi 
+   fi
+  fi
  fi
 done
Try to search for "sound" or "video" or "browser" before and after the patch as an example.

(just searching for file names and descriptions could also be done by adding "-f 1,10" instead of "-f 1" in FNDENTRIES)
Attachments
findnames.sh.patch.gz
findnames.sh patch v4 (text shown above)
(834 Bytes) Downloaded 194 times
PPM.jpg
Searching for "browser" before and after patching (take 3)
(104.13 KiB) Downloaded 590 times
Last edited by mavrothal on Sun 08 Apr 2012, 17:40, edited 8 times in total.
== [url=http://www.catb.org/esr/faqs/smart-questions.html]Here is how to solve your[/url] [url=https://www.chiark.greenend.org.uk/~sgtatham/bugs.html]Linux problems fast[/url] ==

User avatar
jemimah
Posts: 4307
Joined: Wed 26 Aug 2009, 19:56
Location: Tampa, FL
Contact:

Re: Saluki 18 found a problem and found a fix.

#2410 Post by jemimah »

Pete22 wrote:Pupradio worked in all the releases 16 and before. However, it would not even open in 17 or 18.
I was very sad, So my brother and I fiddled with older versions of pupradio

I got .08 pupradio to work. Looking deeper, I noticed that pupradio was not working with xnoice
which is the default in saluki.

I downloaded mplayer and then made mplayer the default media and music player.
Redownloaded Pupradio, and it opened and started playing!!!!

Not sure what is wrong with xnoise.

Pete
Pupradio would have never worked with xnoise.

I have uploaded a version to the repo that uses slimp by default.

User avatar
DaveS
Posts: 3685
Joined: Thu 09 Oct 2008, 16:01
Location: UK

#2411 Post by DaveS »

Thanks Smokey... got it all working including Thunar custom action and CAN confirm 17-18 Delta is a bust. 15 - 16 worked smoothly but created a file called newfile.iso
Spup Frugal HD and USB
Root forever!

User avatar
jim3630
Posts: 791
Joined: Mon 14 Feb 2011, 02:21
Location: Northern Nevada

#2412 Post by jim3630 »

Sage wrote: inter alia. .
wow latin

would then think you could understand the first paragraph on the first page.
Last edited by jim3630 on Sun 08 Apr 2012, 18:53, edited 1 time in total.

aarf

#2413 Post by aarf »

saluki18 looks mostly smooth for the things i do. have to wait for racy to drop off the page before releasing at distrowatch.

canin
Posts: 22
Joined: Sun 08 Apr 2012, 13:31

#2414 Post by canin »

hello,
coming from fedora and mavrothal's olpc-build saluki to enjoy puppy saluki ^^
installed to hdd with the help of grub4dos

is it still allowed to ask for a programme?
i miss xfce-verve panel plugin and couldnt get it to work, at least until now.

a pet which is already ready for the repos and works perfect for non-epson printers is inkGUi
http://www.murga-linux.com/puppy/viewtopic.php?t=26407
(shows levels of ink-cartridges)

thank you for your work on saluki and thx for help
canin

shevan
Posts: 25
Joined: Thu 01 Mar 2012, 11:25
Location: Moldova

#2415 Post by shevan »

new amd catalyst driver 12.3 (release date 3/28/2012) still need patching for saluki default kernel 3.2.8

But after patching it compiles and run well for me


request^
any chance to see psx emulator pet package working for saluki?

User avatar
jemimah
Posts: 4307
Joined: Wed 26 Aug 2009, 19:56
Location: Tampa, FL
Contact:

#2416 Post by jemimah »

canin wrote:hello,
coming from fedora and mavrothal's olpc-build saluki to enjoy puppy saluki ^^
installed to hdd with the help of grub4dos

is it still allowed to ask for a programme?
i miss xfce-verve panel plugin and couldnt get it to work, at least until now.

a pet which is already ready for the repos and works perfect for non-epson printers is inkGUi
http://www.murga-linux.com/puppy/viewtopic.php?t=26407
(shows levels of ink-cartridges)

thank you for your work on saluki and thx for help
canin
I've added inkgui to the repo.

Verve will be in the next release. In the meantime, I've attached it.
Attachments
xfce4-verve-plugin-1.0.0-i486.pet
(19.24 KiB) Downloaded 278 times

User avatar
jemimah
Posts: 4307
Joined: Wed 26 Aug 2009, 19:56
Location: Tampa, FL
Contact:

#2417 Post by jemimah »

shevan wrote:new amd catalyst driver 12.3 (release date 3/28/2012) still need patching for saluki default kernel 3.2.8

But after patching it compiles and run well for me


request^
any chance to see psx emulator pet package working for saluki?
I uploaded pcsxr to the repo. Seems nice but I haven't tested it so let me know if it works.

aarf

#2418 Post by aarf »

saluki18,
opera-11.62-1347.i386.linux
flashplayer - 11,2,202,228 both at mnt/sdb2

for some reason get missing plugin for flash when other puppies see the flashplayer with the plugin setting i have in portable opera.

java from sfs is ok
Last edited by aarf on Sun 08 Apr 2012, 21:04, edited 1 time in total.

User avatar
jemimah
Posts: 4307
Joined: Wed 26 Aug 2009, 19:56
Location: Tampa, FL
Contact:

Re: PPM; search pet descriptions too

#2419 Post by jemimah »

mavrothal wrote:I always thought that would be nice if you could search for a package in PPM not only by the pet name (that quite often is pretty cryptic) but also in the pet description.
Also would be nice if the results also include the description.
This little patch of findnames.sh does it both.
(take 4: eliminates double entries)

Code: Select all

--- a/usr/local/petget/findnames.sh	2012-03-30 17:23:02.000000000 +0300
+++ b/usr/local/petget/findnames.sh	2012-04-08 19:56:05.329195702 +0300
@@ -12,6 +12,9 @@
 . /root/.packages/DISTRO_PET_REPOS #has PET_REPOS, PACKAGELISTS_PET_ORDER
 
 entryPATTERN="`echo -n "$ENTRY1" | sed -e 's%\\-%\\\\-%g' -e 's%\\.%\\\\.%g' -e 's%\\*%.*%g'`"
+if [ "$entryPATTERN" = "" ] ; then
+ exit 0
+fi
 
 CURRENTREPO="`cat /tmp/petget_filterversion`" #search here first.
 REPOLIST="${CURRENTREPO} `cat /tmp/petget_active_repo_list | grep -v "$CURRENTREPO" | tr '\n' ' '`"
@@ -20,19 +23,25 @@
 for ONEREPO in $REPOLIST
 do
  FNDENTRIES="`cat /root/.packages/Packages-${ONEREPO}| cut -f1 -d\| | grep -i "$entryPATTERN"`"
- if [ "$FNDENTRIES" != "" ];then
-  FIRSTCHAR="`echo "$FNDENTRIES" | cut -c 1 | tr '\n' ' ' | sed -e 's% %%g'`"
-  #write these just in case needed...
-  ALPHAPRE="`cat /tmp/petget_pkg_first_char`"
-  #if [ "$ALPHAPRE" != "ALL" ];then
-  # echo "$FIRSTCHAR" > /tmp/petget_pkg_first_char
-  #fi
-  #echo "ALL" > /tmp/petget_filtercategory
-  echo "$ONEREPO" > /tmp/petget_filterversion #ex: slackware-12.2-official
-  #this is read when update TREE1 in pkg_chooser.sh...
-  echo "$FNDENTRIES" | cut -f 1,10 -d '|' > /tmp/filterpkgs.results
-  FNDIT=yes
-  break
+ FNDENTRIES_DES="`cat /root/.packages/Packages-${ONEREPO}| cut -f10 -d\| | grep -i "$entryPATTERN"`"
+ if [[ "$FNDENTRIES" != "" ]] || [[ "$FNDENTRIES_DES" != "" ]] ; then
+ echo "$ONEREPO" > /tmp/petget_filterversion #ex: slackware-12.2-official
+  if [ "$FNDENTRIES" != "" ] ; then
+   FIRSTCHAR="`echo "$FNDENTRIES" | cut -c 1 | tr '\n' ' ' | sed -e 's% %%g'`"
+   #write these just in case needed...
+   ALPHAPRE="`cat /tmp/petget_pkg_first_char`"
+   #this is read when update TREE1 in pkg_chooser.sh...
+   cat /root/.packages/Packages-${ONEREPO}| grep "$FNDENTRIES" | cut -f 1,10 -d '|' > /tmp/filterpkgs.results
+   #this is read when update TREE1 in pkg_chooser.sh...
+   FNDIT=yes
+   if [ "$FNDENTRIES_DES" != "" ] ; then
+    cat /root/.packages/Packages-${ONEREPO}| grep "$FNDENTRIES_DES" | grep -v "$FNDENTRIES" | cut -f 1,10 -d '|' >> /tmp/filterpkgs.results
+    FNDIT=yes 
+    if [ "$FNDIT" = "yes" ] ; then
+     break
+    fi 
+   fi
+  fi
  fi
 done
Try to search for "sound" or "video" or "browser" before and after the patch as an example.

(just searching for file names and descriptions could also be done by adding "-f 1,10" instead of "-f 1" in FNDENTRIES)
I think it's simpler to just change

Code: Select all

FNDENTRIES="`cat /root/.packages/Packages-${ONEREPO}| cut -f1 -d\| | grep -i "$entryPATTERN"`"
to

Code: Select all

FNDENTRIES="`cat /root/.packages/Packages-${ONEREPO}| cut -f1,10 -d\| | grep -i "$entryPATTERN"`"
I have this change for the next release.
Last edited by jemimah on Sun 08 Apr 2012, 21:06, edited 1 time in total.

User avatar
DaveS
Posts: 3685
Joined: Thu 09 Oct 2008, 16:01
Location: UK

#2420 Post by DaveS »

aarf wrote:saluki18,
opera-11.62-1347.i386.linux
flashplayer - 11,2,202,228 both at mnt/sdb2

for some reason get missing plugin for flash when other puppies see the flashplayer with the plugin setting i have in portable opera.
Install the mozilla-libs-10 package from the package manager and you will be set.
Spup Frugal HD and USB
Root forever!

Post Reply