Page 121 of 189

Posted: Sun 08 Apr 2012, 07:26
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

Posted: Sun 08 Apr 2012, 07:30
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.

Posted: Sun 08 Apr 2012, 07:31
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...

Posted: Sun 08 Apr 2012, 07:46
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.

Posted: Sun 08 Apr 2012, 08:01
by DaveS
Thanks... nothing I do makes this work. Guess the delta file is corrupt.

Posted: Sun 08 Apr 2012, 08:18
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.

Posted: Sun 08 Apr 2012, 08:26
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

Re: XDesktop Icon Restorer is sooo cool

Posted: Sun 08 Apr 2012, 08:29
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.

PPM; search pet descriptions too

Posted: Sun 08 Apr 2012, 12:14
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)

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

Posted: Sun 08 Apr 2012, 15:18
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.

Posted: Sun 08 Apr 2012, 16:00
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

Posted: Sun 08 Apr 2012, 18:11
by jim3630
Sage wrote: inter alia. .
wow latin

would then think you could understand the first paragraph on the first page.

Posted: Sun 08 Apr 2012, 18:36
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.

Posted: Sun 08 Apr 2012, 19:42
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

Posted: Sun 08 Apr 2012, 19:55
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?

Posted: Sun 08 Apr 2012, 20:21
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.

Posted: Sun 08 Apr 2012, 20:30
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.

Posted: Sun 08 Apr 2012, 20:58
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

Re: PPM; search pet descriptions too

Posted: Sun 08 Apr 2012, 21:04
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.

Posted: Sun 08 Apr 2012, 21:05
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.