Racy Puppy 5.2.2 Final, 18 Nov. 2011

Please post any bugs you have found
Message
Author
User avatar
Karl Godt
Posts: 4199
Joined: Sun 20 Jun 2010, 13:52
Location: Kiel,Germany

#232 Post by Karl Godt »

2.
racy-5.2.1.90
/usr/sbin/pgprs-shell is NOT updated to handle NEW /lib/modules/all-firmware/ files ...
suggestion:

Code: Select all

--- /initrd/pup_ro2/usr/sbin/pgprs-shell   2010-12-04 10:30:35.000000000 +0000
+++ /usr/sbin/pgprs-shell   2011-11-10 01:59:22.536586399 +0000
@@ -12,12 +12,24 @@
 #script. If it isn't there, you get this message."
 
 #install firmware tarball...
+old_func(){
+if [ -f /lib/modules/all-firmware/pgprs.tar.gz ] ; then
 cp -f /lib/modules/all-firmware/pgprs.tar.gz /tmp/
 cd /tmp
 tar -zxf pgprs.tar.gz
 cp -a --remove-destination /tmp/pgprs/* /
 sync
 cd /
+fi
+}
+old_func
+##KRG new_func for all-firmware not tar.gz anymore [racy-5.2.1.90 [ 2011-Nov ]]
+new_func(){
+if [ -d /lib/modules/all-firmware/pgprs ] ; then
+cp -a --remove-destination /lib/modules/all-firmware/pgprs/* /
+fi
+}
+new_func
 
 #101204...
 yaf-splash -bg violet -placement center -timeout 3 -text "Updating menu, screen will flicker..."

1.
racy-5.2.1.90 first-run :
gtkdialog4 combobox dropdown button consuming 100% CPU resources on P4-2800GHZ,1GB DDR-RAM [Rolling Eyes Crying or Very sad Mad Shocked Confused Sad Surprised Very Happy]

seems a maneuver area for gtkdialog ....

User avatar
Billtoo
Posts: 3720
Joined: Tue 07 Apr 2009, 13:47
Location: Ontario Canada

#233 Post by Billtoo »

Karl Godt wrote:
1.
racy-5.2.1.90 first-run :
gtkdialog4 combobox dropdown button consuming 100% CPU resources on P4-2800GHZ,1GB DDR-RAM [Rolling Eyes Crying or Very sad Mad Shocked Confused Sad Surprised Very Happy]

seems a maneuver area for gtkdialog ....
Same thing in wary at this point:

User avatar
shinobar
Posts: 2672
Joined: Thu 28 May 2009, 09:26
Location: Japan
Contact:

cpu usage with gtkdialog3/4 combobox

#234 Post by shinobar »

Karl Godt wrote:racy-5.2.1.90 first-run :
gtkdialog4 combobox dropdown button consuming 100% CPU resources on P4-2800GHZ,1GB DDR-RAM [Rolling Eyes Crying or Very sad Mad Shocked Confused Sad Surprised Very Happy]

seems a maneuver area for gtkdialog ....
I can reproduce the issue also on Wary-5.2.2 RC.
Seems the gtkdialog3/4 problem on the recent Wary/Racy.
It also occurs on Wary-5.2 and does not on Wary-511.
http://www.murga-linux.com/puppy/viewto ... &start=120
Downloads for Puppy Linux [url]http://shino.pos.to/linux/downloads.html[/url]

User avatar
Karl Godt
Posts: 4199
Joined: Sun 20 Jun 2010, 13:52
Location: Kiel,Germany

#235 Post by Karl Godt »

seems gtkdialog4 does not like the <combobox> very much .

tried
<combobox tooltip-text=\"${TT_tz1}\">
and
<combobox>

still scrolling is very very slow .. and since the MainBoard is screwed only twice the vibrations of the CPU are sounding remarkably ... :)

What i think i could add from /tmp/xerrs.log :

JWM: warning: /root/.jwm/jwmrc-theme[10]: invalid tag in Active: Corner
JWM: warning: /root/.jwm/jwmrc-theme[16]: invalid tag in Inactive: Corner

Hadn't they been commented like

Code: Select all

--- /initrd/pup_ro2/root/.jwm/jwmrc-theme	2011-11-10 16:58:57.000000000 +0800
+++ /root/.jwm/jwmrc-theme	2011-11-11 02:41:14.836533429 +0800
@@ -7,13 +7,13 @@
     <Active>
        <Text>white</Text>
        <Title>#393F96:#30528D</Title>
-       <Corner>#4A5966</Corner>
+       <!-- <Corner>#4A5966</Corner> -->
        <Outline>black</Outline>
     </Active>
     <Inactive>
        <Text>white</Text>
        <Title>#84CFF1:#393F96</Title>
-       <Corner>#DCDAD5</Corner>
+       <!-- <Corner>#DCDAD5</Corner> -->
        <Outline>gray30</Outline>
     </Inactive>
 </WindowStyle> 
BUT i finally found that this had been already ^ worked around ^ :
# grep 'jwm \-p' /usr/local/jwmconfig2/*
/usr/local/jwmconfig2/taskbarConfig:jwm -p 2>&1 | grep -v 'warning' > $TMP
/usr/local/jwmconfig2/taskbarHeight:jwm -p 2>&1 | grep -v 'warning' > $TMP
/usr/local/jwmconfig2/taskbarPlace:jwm -p 2>&1 | grep -v 'warning' > $TMP
/usr/local/jwmconfig2/trayInsert:jwm -p 2>&1 | grep -v 'warning' > $TMP
/usr/local/jwmconfig2/virtualDesk:jwm -p 2>&1 | grep -v 'warning' > $TMP

AND
Input string is '3'
ls: cannot access /tmp/jwmrc-tray-tmp-3.txt: No such file or directory

lets try a sed fix ...
# for i in /usr/local/jwmconfig2/* ; do echo $i; grep '`ls ' $i; echo; done
ONLY panel-buttons with 3 hits ..

Code: Select all

# sed -i 's/`ls \(.*\)`/`ls \1 2>\/dev\/null`/g' /usr/local/jwmconfig2/panel-buttons
worked for me today .. sed-gymnastics for my little brain ... :)
had thought i would have to escape the backticks fist , but that did not worked for me ...
BUT OF COURSE a " test -f FILENAME " would be much more elegant i think
[edit some hours later : needs additionally

Code: Select all

 # sed -i 's/"`ls \(.*\)`" = "" ]/\! -f \1 ]/g' /usr/local/jwmconfig2/panel-buttons
to the code line below : \edit]

Code: Select all

# sed -i 's/"`ls \(.*\)`" \(.*\) ]/-f \1 ]/g' /usr/local/jwmconfig2/panel-buttons
lets see how much attempts i did on this :
# grep sed $HOME/.history | wc -l
10
WOAOOO: Master of the SEDIVERSE :D
[edit some hours later : grep sed $HOME/.history | wc -l == 17 /edit]

SINCE THAT IS ALL COSMETICS i somehow did not mention these before .

Now i want to ^ *** off early ^ for the early morning here , hopefully the shutdown fix for encrypted save-files would work ... [edit : works OK /edit]
Last edited by Karl Godt on Fri 11 Nov 2011, 13:15, edited 1 time in total.

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#236 Post by James C »

Billtoo wrote:
Karl Godt wrote:
1.
racy-5.2.1.90 first-run :
gtkdialog4 combobox dropdown button consuming 100% CPU resources on P4-2800GHZ,1GB DDR-RAM [Rolling Eyes Crying or Very sad Mad Shocked Confused Sad Surprised Very Happy]

seems a maneuver area for gtkdialog ....
Same thing in wary at this point:
Not a problem here in Racy.
Attachments
Racy.png
(125.84 KiB) Downloaded 2347 times

User avatar
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#237 Post by James C »

Racy 5.2.2 RC live multi-session cd.Sound and internet working on initial boot. Incorrect screen resolution on boot, ran xorgwizard and used nouveau driver to get desired 1366x768 resolution.

No real problems noticed yet.

-Computer-
Processor : 4x AMD Athlon(tm) II X4 620 Processor
Memory : 3884MB (167MB used)
Operating System : Unknown distribution
User Name : root (root)
Date/Time : Fri 11 Nov 2011 12:06:31 AM CST
-Display-
Resolution : 1366x768 pixels
OpenGL Renderer : Software Rasterizer
X11 Vendor : The X.Org Foundation
-Multimedia-
Audio Adapter : HDA-Intel - HDA NVidia
VGA compatible controller : nVidia Corporation C61 [GeForce 7025 / nForce 630a]
Audio device : nVidia Corporation MCP61 High Definition Audio

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

#238 Post by mavrothal »

James C wrote: Not a problem here in Racy.
You have to open the dropbox to see it. It is also in timezone set.
In a slow machine (XO-1) is really lethal. Take about 1 minute to do 5 scroll clicks :(
== [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
James C
Posts: 6618
Joined: Thu 26 Mar 2009, 05:12
Location: Kentucky

#239 Post by James C »

mavrothal wrote:
James C wrote: Not a problem here in Racy.
You have to open the dropbox to see it. It is also in timezone set.
In a slow machine (XO-1) is really lethal. Take about 1 minute to do 5 scroll clicks :(
Figured I was missing something..... :lol:

Didn't go to 100%.....but two cores went crazy.
Attachments
racy.png
(128.69 KiB) Downloaded 2062 times

Sage
Posts: 5536
Joined: Tue 04 Oct 2005, 08:34
Location: GB

#240 Post by Sage »

5.2.1.90 is unusable. Confirm issues with mouse (PS/2 non-functioning, USB like treacle - too slow to access locale settings). Inappropriate messages re. Flashplayer, panel for which pops up before selecting browser. Cannot continue testing.

Later:
The PS/2 mouse non-functioning is partly machine specific - runs on one out of three! New feature.

The locales can, with extreme patience, be set from the k/b, but timezones are restricted to Asia and a few African locations. Europe can be set from the right-click/desktop/set timezone, though.

Good news is that Opera, which has recently become essential rather than a personal preference, works with the new 11.6beta (Other DEB).

User avatar
Karl Godt
Posts: 4199
Joined: Sun 20 Jun 2010, 13:52
Location: Kiel,Germany

SAVE SESSION TO ENCRYPTED SAVE_FILE WORKS AGAIN

#241 Post by Karl Godt »

2. The save to aes heavy encrypted save-file worked .
[ would have taken me days or weeks to figure out a missing variable i guess .]

1. /usr/sbin/filemnt WORKS on both encrypted savefiles !! HURRAY !!
[ really missed that feature :D ]

ONE MINOR THINGY about /usr/sbin/filemnt
which is not only cosmetic :

due to the code checks if FILE is mounted due to a simple
if [ ! -d "$MntPt" ] ;then

::MANY TIMES (99%+) the rmdir $MntPt at the end of umount $MntPt does not succeed ,
i guess due to little time for the system to update everything .

AN ALWAYS WORKING " rmdir $MntPt " i could achieve with either both of these :

Code: Select all

--- /initrd/pup_ro2/usr/sbin/filemnt	2011-11-10 12:03:10.000000000 +0800
+++ /usr/sbin/filemnt	2011-11-11 12:05:50.000000000 +0800
@@ -166,7 +166,7 @@ Note, there is an SFS-version-converter
   rox -D $MntPt #BK
   umount $MntPt
   Err=$?
-  rmdir $MntPt
+  #rmdir $MntPt ##KRG though umount finishes , many times rmdir thinks $MntPt still not empty
   if [ "basename $imgFile" = 'initrd' ] ;then gzip -9 $imgFile ;fi
 #  yaf-splash -timeout 3 -font "8x16" -outline 0 -margin 4 -bg orange -text "Unmounting $imgFileBASE" #BK
 #  /usr/X11R7/bin/yaf-splash -timeout 3 -font "8x16" -outline 0 -margin 4 -bg orange -text "Unmounting $imgFileBASE" #BK
@@ -181,5 +181,5 @@ Note, there is an SFS-version-converter
   #xmessage -title " ERROR..." "  Failed mounting or unmounting.  "
   pupdialog --background red --title "ERROR" --msgbox "Failed mounting or unmounting" 0 0
  fi
-
+[ -d "$MntPt" -a "`busybox mount | grep "$MntPt"`" = "" ] && rmdir "$MntPt"
 ###END###
AT THE END || OR AT THE BEGINNING

Code: Select all

--- /initrd/pup_ro2/usr/sbin/filemnt	2011-11-10 12:03:10.000000000 +0800
+++ /usr/sbin/filemnt	2011-11-11 13:10:08.000000000 +0800
@@ -37,7 +37,7 @@ fi
   imgFile="`pwd``echo $imgFile |sed 's/^\.//'`"
  fi
  MntPt='/mnt/'`echo "$imgFile" |sed "s#^\.##g" |sed "s#/#+#g"`
- 
+ [ -d "$MntPt" -a "`busybox mount | grep "$MntPt"`" = "" ] && rmdir "$MntPt"
 
 if [ 1 -eq 2 ] ;then	##############################################	JUMP OVER this SECTION.
 
@@ -166,7 +166,7 @@ Note, there is an SFS-version-converter
   rox -D $MntPt #BK
   umount $MntPt
   Err=$?
-  rmdir $MntPt
+  #rmdir $MntPt ##KRG though umount finishes , many times rmdir thinks $MntPt still not empty
   if [ "basename $imgFile" = 'initrd' ] ;then gzip -9 $imgFile ;fi
 #  yaf-splash -timeout 3 -font "8x16" -outline 0 -margin 4 -bg orange -text "Unmounting $imgFileBASE" #BK
 #  /usr/X11R7/bin/yaf-splash -timeout 3 -font "8x16" -outline 0 -margin 4 -bg orange -text "Unmounting $imgFileBASE" #BK
[ and another little play-around would be to make /usr/sbin/filemnt not X dependent :
would need several

[ "$DISPLAY" ] && yaf-splash || pupdialog
realpath $1 || readlink -e $1 ##if called with filemnt ./save-file.2fs
if [ "$DISPLAY" ] ; then
rxvt -geometry 25x3 -title "Enter password" -bg orange -e losetup-FULL -E 1 $DEVLOOP $imgFile
else
echo "Enter password :"
losetup-FULL -E 1 $DEVLOOP $imgFile
fi

END of play-around ]

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

#242 Post by DaveS »

Same old Same old. Broadcom wifi of course. Racy just cant do it........ /lib/firmware/B43 missing
Added it.. fixed
Attachments
wifi.png
(30.5 KiB) Downloaded 1187 times
Last edited by DaveS on Fri 11 Nov 2011, 13:23, edited 1 time in total.
Spup Frugal HD and USB
Root forever!

linuxcbon
Posts: 1312
Joined: Thu 09 Aug 2007, 22:54

#243 Post by linuxcbon »

RACY 5.2.1.90

- glxgears 480 FPS = too slow
- dmesg full of
[ 21.290399] unionfs: new lower inode mtime (bindex=0, name=ROX-Filer)
[ 22.693811] unionfs: new lower inode mtime (bindex=0, name=backgrounds)
[ 23.544394] unionfs: new lower inode mtime (bindex=0, name=net)
[ 23.927982] unionfs: new lower inode mtime (bindex=0, name=etc)
- quick setup scrolling too slow
- pop up asking to download flashplayer is annoying

ldd /usr/lib/*.so | grep found
ldd: warning: you do not have execution permission for `/usr/lib/libau.so'
ldd: warning: you do not have execution permission for `/usr/lib/libcap.so'
ldd: warning: you do not have execution permission for `/usr/lib/libc.so'
ldd: warning: you do not have execution permission for `/usr/lib/libexiv2.so'
ldd: warning: you do not have execution permission for `/usr/lib/libgcc_s.so'
/usr/lib/libgtkhtml-2.so: /usr/lib/libxml2.so.2: no version information available (required by /usr/lib/libgtkhtml-2.so)
/usr/lib/libgtkhtml-2.so: /usr/lib/libxml2.so.2: no version information available (required by /usr/lib/libgtkhtml-2.so)
ldd: warning: you do not have execution permission for `/usr/lib/libpthread.so'
ldd: warning: you do not have execution permission for `/usr/lib/preloadable_libintl.so'

Same things as for 5.1.110

User avatar
Karl Godt
Posts: 4199
Joined: Sun 20 Jun 2010, 13:52
Location: Kiel,Germany

#244 Post by Karl Godt »

linuxcbon wrote:- pop up asking to download flashplayer is annoying
You do not achieve much with personal judgements also
with

is it needed ?
directory is empty
inkscape not needed !

and such really not relevant remarks , except your are < a towards zero extremist > .

I like the french mentality , had worked some weeks in Poitiers , but everything in Europe changes i thing to no good .

Just remaster and you are good to go !

I like using the limited inkscapelite once a while next to mtpaint or gimp . inkscapelite actually is patched or reworked by Barry .

AND inkscapelite is based upon inkscape BUT i could only find 0.37 or later src @sourceforge .

Also abiword works OK for my purposes , never used OO or Libre Office on Puppy .

User avatar
Karl Godt
Posts: 4199
Joined: Sun 20 Jun 2010, 13:52
Location: Kiel,Germany

#245 Post by Karl Godt »

linuxcbon wrote:- dmesg full of
[ 21.290399] unionfs: new lower inode mtime (bindex=0, name=ROX-Filer)
[ 22.693811] unionfs: new lower inode mtime (bindex=0, name=backgrounds)
[ 23.544394] unionfs: new lower inode mtime (bindex=0, name=net)
[ 23.927982] unionfs: new lower inode mtime (bindex=0, name=etc)
ON MY SIDE :
# dmesg | grep union | wc -l
12
# dmesg | wc -l
711
# grep UNION /etc/modules/*
/etc/modules/DOTconfig-3.0.7:CONFIG_UNION_FS=m
/etc/modules/DOTconfig-3.0.7:# CONFIG_UNION_FS_XATTR is not set
/etc/modules/DOTconfig-3.0.7:# CONFIG_UNION_FS_DEBUG is not set

SINCE DEBUG for UNION_FS is not set , 12 lines of 711 appear reasonable to me [ dc -> 1.68776 % ].

User avatar
Karl Godt
Posts: 4199
Joined: Sun 20 Jun 2010, 13:52
Location: Kiel,Germany

#246 Post by Karl Godt »

linuxcbon wrote:- glxgears 480 FPS = too slow
I had only a max of something over 60 on my hardware , but today
it had been the new best mark(s) of
# glxgears
704 frames in 5.0 seconds = 140.725 FPS
746 frames in 5.0 seconds = 149.082 FPS
769 frames in 5.0 seconds = 153.612 FPS

:D

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

#247 Post by DaveS »

Karl Godt wrote:
linuxcbon wrote:- glxgears 480 FPS = too slow
I had only a max of something over 60 on my hardware , but today
it had been the new best mark(s) of
# glxgears
704 frames in 5.0 seconds = 140.725 FPS
746 frames in 5.0 seconds = 149.082 FPS
769 frames in 5.0 seconds = 153.612 FPS

:D
Ha Ha.. only 60 FPS on my old laptop, but that still feels snappy.
Spup Frugal HD and USB
Root forever!

Jim1911
Posts: 2460
Joined: Mon 19 May 2008, 20:39
Location: Texas, USA

#248 Post by Jim1911 »

Frugal installation on an ext4 partition. It's working great and the problems with the Bootmanager and Shutdown that I reported on page 7 have been corrected.

Cheers,
Jim

User avatar
Karl Godt
Posts: 4199
Joined: Sun 20 Jun 2010, 13:52
Location: Kiel,Germany

#249 Post by Karl Godt »

Noticed , that rox -v 2.10 apparently dos not freeze anymore opening /proc directory ( running with save-file-crypta.2fs ) . 8)

User avatar
rcrsn51
Posts: 13096
Joined: Tue 05 Sep 2006, 13:50
Location: Stratford, Ontario

#250 Post by rcrsn51 »

mavrothal wrote:You have to open the dropbox to see it. It is also in timezone set. In a slow machine (XO-1) is really lethal. Take about 1 minute to do 5 scroll clicks :(
I can reproduce this problem by making a simple dtkdialog3 combo box with enough entries to require a vertical scroll bar.

Importing gtkdialog3 from an older Puppy does not fix it. And neither does running it as a gtkdialog4 app.

Is this a conflict with the new gtk in Puppy/Racy 5.2?

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

#251 Post by DaveS »

rcrsn51 wrote:
mavrothal wrote:You have to open the dropbox to see it. It is also in timezone set. In a slow machine (XO-1) is really lethal. Take about 1 minute to do 5 scroll clicks :(
I can reproduce this problem by making a simple dtkdialog3 combo box with enough entries to require a vertical scroll bar.

Importing gtkdialog3 from an older Puppy does not fix it. And neither does running it as a gtkdialog4 app.

Is this a conflict with the new gtk in Puppy/Racy 5.2?
Dont know, but I hate it :(
Spup Frugal HD and USB
Root forever!

Post Reply