Page 2 of 90

Posted: Tue 28 Oct 2014, 05:32
by gcmartin
>>> error in browser caused duplication <<<

"save to folder" (savefolder) presented by @Gyro

Posted: Tue 28 Oct 2014, 05:33
by gcmartin
Not speaking for @Gyro, but, he did find some anomalies in save to folder efforts and provided some corrections.

His work did not make it into WOOFCE in time for this version generation. Hence the resolutions are being provided by him. They can only be gotten via the links he provides for the replacements to the ISO files that are shipped for TahrPUP6. I believe his offers merely corrects "save to folder" processing without making changes to the base TahrPUP6 system.

Hope this is accurate for the help he is trying to provide.

Re: savefolder using symbolic links

Posted: Tue 28 Oct 2014, 07:11
by gyro
mikeslr wrote:Was this discussed in a previous thread?
If not, could you provide some details? How does it differ from an "ordinary" savefolder? How do you set up the symbolic links? To what? What are its potential advantages?
Yes, http://murga-linux.com/puppy/viewtopic.php?t=95922.
Instead of using a 'mount -o bind' command to make the actual directory containing the savefolder appear at '/initrd/pup_rw', it uses a symbolic link.
Both methods break some existing code because old assumptions become false. The list of broken programs for the 'symbolic link' method is a bit shorter, and they are very specific to puppy. So hopefully it's less likely to bite us in the future.
It's been ported to a few puppies now. The intention of my post was to announce the availability of a port for TahrPup 6.0.
The 'initrd.gz' is a normal TahrPup 6.0 'initrd.gz' but with a patched 'init' script. The 'ydrv_tahr_6.0.sfs' contains patched versions of a few puppy programs to support this implementation.

gyro

Posted: Tue 28 Oct 2014, 10:45
by BarryK
Guys, yes, I announced Tahrpup 6.0 as an official Puppy, after receiving recommendation from 01micko, see my blog:

http://bkhome.org/news/?viewDetailed=00097

...but, note, I have just now edited it.

I had informed Ladislav, the top guy at distrowatch.com, and he replied that he is concerned about the naming of Tahpup, as it is now an official Puppy Linux. So I reworded the heading in my blog as "Puppy Linux 6.0, "Tahrpup" released"

You will notice how Ladislav names each Puppy:
http://distrowatch.com/table.php?distribution=puppy

...you see, he wants a nice consistent naming "Puppy Linux 5.6", "Puppy Linux 5.7", etc.

He thinks that this will avoid confusion.

I have also added some comment in my blog to explain difference from the "Slacko edition".

Hmmm, to keep Ladislav happy, perhaps the next Slacko edition should have a later version number, say "Puppy Linux 6.1, "Slacko" edition"

Anyway, in this Forum thread you can continue to name this pup anyway you want!

Posted: Tue 28 Oct 2014, 11:19
by linux28
Geoffrey wrote:I've compiled xfce and have it running of a fashion, still needs work to get everything working, recompiled glib with the patch that's mentioned,
then compiled the pup-volume-monitor, it threw a few warnings in the compile but it's now working,
no segment faults, thunar filemanager shows drives and desktop also shows them.
pup-volume-monitor??

Posted: Tue 28 Oct 2014, 11:41
by linux28
Geoffrey wrote:I've compiled xfce and have it running of a fashion, still needs work to get everything working, recompiled glib with the patch that's mentioned,
then compiled the pup-volume-monitor, it threw a few warnings in the compile but it's now working,
no segment faults, thunar filemanager shows drives and desktop also shows them.
Make thunar normal share
pup-volume-monitor

share please

Posted: Tue 28 Oct 2014, 13:26
by kimathi
Geoffrey wrote:I've compiled xfce and have it running of a fashion, still needs work to get everything working, recompiled glib with the patch that's mentioned,
then compiled the pup-volume-monitor, it threw a few warnings in the compile but it's now working,
no segment faults, thunar filemanager shows drives and desktop also shows them.
Mind sharing your pet packages for others to use. Maybe have they could be added to quickpet

Posted: Tue 28 Oct 2014, 15:54
by 666philb
thanks barry

6.0

Posted: Tue 28 Oct 2014, 19:29
by sszindian
Tahr-6.0

pupRadio/pupTelly streaming media

Not working from the menu???

>>>---Indian------>

Re: 6.0

Posted: Tue 28 Oct 2014, 19:54
by 666philb
sszindian wrote:Tahr-6.0

pupRadio/pupTelly streaming media

Not working from the menu???

>>>---Indian------>
hi sszindian,

try deleting /root/.pupradio

Re: share please

Posted: Tue 28 Oct 2014, 20:55
by Geoffrey
kimathi wrote:
Geoffrey wrote:I've compiled xfce and have it running of a fashion, still needs work to get everything working, recompiled glib with the patch that's mentioned,
then compiled the pup-volume-monitor, it threw a few warnings in the compile but it's now working,
no segment faults, thunar filemanager shows drives and desktop also shows them.
Mind sharing your pet packages for others to use. Maybe have they could be added to quickpet
These work for me compiled as per Linux From Scratch, using this patch which I manually edited the changes from.

glib_2.40.0-tahr-090814.patch

Code: Select all

diff -rupN glib-2.36.4/gio/gappinfo.c glib-2.36.4-patched-s/gio/gappinfo.c
--- glib-2.36.4/gio/gappinfo.c	2013-08-07 22:34:32.000000000 +0800
+++ glib-2.36.4-patched-s/gio/gappinfo.c	2014-06-28 09:47:48.573336650 +0800
@@ -25,7 +25,7 @@
 #include "glibintl.h"
 #include <gioerror.h>
 #include <gfile.h>
-
+#include <stdlib.h>
 
 /**
  * SECTION:gappinfo
@@ -702,8 +702,13 @@ g_app_info_launch_default_for_uri (const
       file = g_file_new_for_uri (uri);
       app_info = g_file_query_default_handler (file, NULL, error);
       g_object_unref (file);
-      if (app_info == NULL)
-	return FALSE;
+	if (app_info == NULL)
+	{
+       gchar *cCommand = g_strdup_printf (" xdg-open %s", uri ); 
+       system(cCommand); 
+       g_free (cCommand); 
+       return TRUE; 
+	}
 
       /* We still use the original @uri rather than calling
        * g_file_get_uri(), because GFile might have modified the URI
diff -rupN glib-2.36.4/gio/gunixmounts.c glib-2.36.4-patched-s/gio/gunixmounts.c
--- glib-2.36.4/gio/gunixmounts.c	2013-08-07 22:34:32.000000000 +0800
+++ glib-2.36.4-patched-s/gio/gunixmounts.c	2014-06-28 09:53:33.366673050 +0800
@@ -2136,7 +2136,7 @@ g_unix_mount_guess_should_display (GUnix
           mount_path[sizeof ("/run/media/") - 1 + user_name_len] == '/')
         is_in_runtime_dir = TRUE;
 
-      if (is_in_runtime_dir || g_str_has_prefix (mount_path, "/media/"))
+      if (is_in_runtime_dir || g_str_has_prefix (mount_path, "/mnt/"))
         {
           char *path;
           /* Avoid displaying mounts that are not accessible to the user.
@@ -2146,7 +2146,7 @@ g_unix_mount_guess_should_display (GUnix
            * block or fail stat()'ing, such as network mounts.
            */
           path = g_path_get_dirname (mount_path);
-          if (g_str_has_prefix (path, "/media/"))
+          if (g_str_has_prefix (path, "/mnt/"))
             {
               if (g_access (path, R_OK|X_OK) != 0) 
                 {
Added start-pup-volume-monitor script in /etc/init.d with contents

Code: Select all

#!/bin/bash

case "$1" in
    start)
        pup-volume-monitor-admin --start
        ;;
    stop)
        pup-volume-monitor-admin --stop
        ;;
    restart)
        pup-volume-monitor-admin --stop
      sleep 1
        pup-volume-monitor-admin --start
        ;;
    *)
        echo "Usage: $0 {start|stop|restart}"
        ;;
esac 
to the pup-volume-monitor pet.

glib_DEV-2.42.0-i686.pet

glib_DOC-2.42.0-i686.pet

glib_NLS-2.42.0-i686.pet

glib-2.42.0-i686.pet

pup_DEV-volume-monitor-0.1.15-i686.pet

pup-volume-monitor-0.1.15-i686.pet

6.0

Posted: Wed 29 Oct 2014, 00:23
by sszindian
---------------------------------------
666philb wrote:
try deleting /root/.pupradio
---------------------------------------


Yep Did the trick... now working!!! (for sure a patch for your updates)

>>>---Indian------>

Posted: Wed 29 Oct 2014, 01:34
by James C
.

Posted: Wed 29 Oct 2014, 08:11
by spandey
Will it be possible to add SUSPEND option to EXIT Menu? Can someone be kind enough to help?

Posted: Wed 29 Oct 2014, 08:54
by augras
Hi,
Is guvcview working for you ? On pae or non-pae i get a black window on all of my computers ! The webcam woks fine in skype but nothing with guvcview.
Thanks,
Philippe

Re: share please

Posted: Wed 29 Oct 2014, 11:04
by kimathi
Geoffrey wrote: These work for me compiled as per Linux From Scratch, using this patch which I manually edited the changes from.
Thanks for them, i too compile xfce using lfs, however my thunar results in double entries for drives when mounted and even loop entries on the side, how is it done to avoid these issues plus how to get rid of the orange/ red warning that am running as root.

Kindly share your Thunar as well and xfce4 plugins.

Posted: Wed 29 Oct 2014, 11:42
by dejan555
Updated links to latest version on http://puppy.b0x.me/
Correct me if I'm wrong about other versions.
I might add a new page to highlight some other projects going on in community when I get time since were starting with "PR" again :)

I booted tahrpup on laptop shortly last night.
I like the default icons but I think the orange wallpaper would be better and some other jwm theme as default.
It booted to correct screen resolution and I could connect to wifi.

Re: share please

Posted: Wed 29 Oct 2014, 12:56
by Geoffrey
kimathi wrote:
Geoffrey wrote: These work for me compiled as per Linux From Scratch, using this patch which I manually edited the changes from.
Thanks for them, i too compile xfce using lfs, however my thunar results in double entries for drives when mounted and even loop entries on the side, how is it done to avoid these issues plus how to get rid of the orange/ red warning that am running as root.

Kindly share your Thunar as well and xfce4 plugins.
Yeah Thunar does that in Precise too, in Slacko it's ok so I have the same problem as you and I don't know the fix for that.

Edit: compiled in Tahr
I used this Thunar https://dl.dropboxusercontent.com/u/260 ... 3-i686.pet it still doubles up on the mounts but there is no root warning.

I have yet to build more packages, I'm just trying to debug as I go.

Re: share please

Posted: Wed 29 Oct 2014, 13:08
by rg66
kimathi wrote:however my thunar results in double entries for drives when mounted and even loop entries on the side, how is it done to avoid these issues plus how to get rid of the orange/ red warning that am running as root.
You have to edit one of the thunar files before you compile to get rid of root warning. I can't remember which one at the moment.

The only way I know of getting rid of the double entries so far is to use thunar-1.4.0

Posted: Wed 29 Oct 2014, 18:32
by Billtoo
Geoffrey wrote:I've compiled xfce and have it running of a fashion, still needs work to get everything working, recompiled glib with the patch that's mentioned,
then compiled the pup-volume-monitor, it threw a few warnings in the compile but it's now working,
no segment faults, thunar filemanager shows drives and desktop also shows them.
I compiled xfce4 too, I used your glib-2.42.0-i686.pet and pup-volume-monitor-0.1.15-i686.pet pets.
It's working pretty well.