Page 13 of 25

Posted: Fri 11 Nov 2011, 20:44
by peebee
Hi Barry

Pristine frugal install of racy 5.2.1.90

Quick report:

1. I see the very lethargic drop down menu selection in QuickSetup reported by others

2. B43 wifi is still not detected and loaded - if I copy the b43 firmware directory from /lib/modules/all-firmware to /lib/firmware AND put "modprobe b43" into rc.local then the wifi works - so all the components are there and working EXCEPT for the detection and automatic loading function.

Quick question - as the firmware directories are no longer compressed couldn't they be permanently in /lib/firmware or is there some other reason that they have to be copied?

Cheers
peebee

Posted: Fri 11 Nov 2011, 20:45
by jim3630
frugal install of 5.2.1.90 (5.2.2 RC) to ext4
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 :(
have same except not quite as slow.
Before I could run the connect wizard, a window popped up asking if I wanted to install the Flash player.
same here.

getting about 60fps here on newer dual core intel. it maintains that 60 even with full open screen it's smooth and looks good.

no sound problems noted as did in prior.

Posted: Fri 11 Nov 2011, 20:47
by DaveS
peebee wrote:Hi Barry

Pristine frugal install of racy 5.2.1.90

Quick report:

1. I see the very lethargic drop down menu selection in QuickSetup reported by others

2. B43 wifi is still not detected and loaded - if I copy the b43 firmware directory from /lib/modules/all-firmware to /lib/firmware AND put "modprobe b43" into rc.local then the wifi works - so all the components are there and working EXCEPT for the detection and automatic loading function.



Quick question - as the firmware directories are no longer compressed couldn't they be permanently in /lib/firmware or is there some other reason that they have to be copied?

Cheers
peebee
I only had to copy B43, no need for modprobe, then it worked.

Posted: Fri 11 Nov 2011, 21:11
by Karl Godt
OK , some sed gymnastics seems to be capable to batch rename combobox to comboboxtext

# for i in /usr/local/*/* ; do echo $i; sed -i 's#combobox#comoboxtext#g' $i; sleep 1s; done

# for i in /usr/local/*/* ; do echo $i; sed -i 's#comboboxtexttext#comboboxtext#g' $i; sleep 1s; done
[edit some hours later .. always these typos (see underscored b :) ) ]
BUT WATCH OUT for Xdialog --combobox !!!
[me thinking a script to filter out Xdialog now is beyond my beer level ]

AND probably needs " sed 's#gtkdialog2#gtkdialog4#g' " AND " sed#gtkdialog3#gtkdialog4#g' , too

AND probably some <TAGS> would not work , as not recognized anymore by gtkdialog4 ....

BUT I think only an official release would show off which apps would not work anymore , cause this would need long term observation ...

[ not to mention /usr/bin && /usr/sbin [ && /usr/x11/bin ] ]
[ me thinking more beer :) ]

Posted: Fri 11 Nov 2011, 22:14
by James C
For what it's worth, the gtkdialog bug doesn't appear to be affecting pemasu's latest release of Dpup Exprimo (released today).
http://www.murga-linux.com/puppy/viewto ... 472#564472

Posted: Fri 11 Nov 2011, 22:47
by BarryK
Fix for quicksetup.

Just about everyone is reporting massive slow-down in the drop-down lists in Quick Setup.

This was because I changed from using the <comboboxtext> tag to <combobox>. The change was done to fix a "double-popup" problem.

However, I have gone back to <comboboxtext> and fixed the double-popup problem. I have posted to the gtkdialog development thread reporting the problems, and latest fixed script is posted there:

http://murga-linux.com/puppy/viewtopic. ... 884#581884

Posted: Fri 11 Nov 2011, 23:09
by James C
BarryK wrote:Fix for quicksetup.

Just about everyone is reporting massive slow-down in the drop-down lists in Quick Setup.

This was because I changed from using the <comboboxtext> tag to <combobox>. The change was done to fix a "double-popup" problem.

However, I have gone back to <comboboxtext> and fixed the double-popup problem. I have posted to the gtkdialog development thread reporting the problems, and latest fixed script is posted there:

http://murga-linux.com/puppy/viewtopic. ... 884#581884
Appears to have solved the problem in regular Wary 5.2.1.90.

Posted: Fri 11 Nov 2011, 23:27
by BarryK
Karl Godt wrote: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..."
Thanks, fixed.

Posted: Fri 11 Nov 2011, 23:38
by BarryK
Karl Godt wrote: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> 
Thanks, fixed. I removed <corner> tags totally.

Re: SAVE SESSION TO ENCRYPTED SAVE_FILE WORKS AGAIN

Posted: Fri 11 Nov 2011, 23:56
by BarryK
Karl Godt wrote: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 .
Ok, I have implemented a change that should fix it.

Posted: Sat 12 Nov 2011, 00:08
by BarryK
DaveS wrote:Same old Same old. Broadcom wifi of course. Racy just cant do it........ /lib/firmware/B43 missing
Added it.. fixed
There is a mystery here.

It has been suggested that if the firmware is already in /lib/firmware, then b43 works.

Ok, I have moved the b43 firmware to /lib/firmware/b43. I modified kernel-skeleton/pinstall.sh to achieve this.

Posted: Sat 12 Nov 2011, 00:18
by BarryK
linuxcbon wrote:- pop up asking to download flashplayer is annoying
For most users, it is a one-off event. It is only testers who are going to find it "annoying". Or for those users who boot Puppy always without any save-file -- very rare breed of user.

The Flashplayer popup has been criticised as coming up too soon. I have delayed it a bit, another 6 seconds after delayedrun detects an Internet connection.

Posted: Sat 12 Nov 2011, 00:23
by BarryK
Flash wrote:Downloaded the Racy iso and used Burniso2cd to burn it to a mini DVD-R. Booted the mini DVD which correctly autoconfigured the audio and video (except the volume was a bit low, but I was able to correct that by turning up everything I could find in Retrovol.) Before I could run the connect wizard, a window popped up asking if I wanted to install the Flash player. Of course, I couldn't say yes because there was no connection yet to the internet.
That is wrong. The Flashplayer popup only happens after an Internet connection is detected. /usr/sbin/delayedrun does a "ping 8.8.8.8" followed by a "ping www.google.com" and if success only then does it bring up the popup.

So, you must have had an Internet connection before you ran the Connect Wizard, which is possible, via ethernet.

Posted: Sat 12 Nov 2011, 00:23
by pemasu
Barry. I did above b43 firmware trick manually in that test dpup with 3.1 kernel. I unpacked the tar.gz to the /lib/firmware at woof building time. And I used the b43 firmware package from oneiric you posted about. I will report if it do the trick. There is already one b43 failure reported though.

Posted: Sat 12 Nov 2011, 00:25
by BarryK
Flash wrote:Later, after I had already opened SeaMonkey and then closed it, I used the Puppy Package Manager to install Flash and Flashblock, but SeaMonkey would not start from the desktop icon after I installed them. I eventually found two versions of SeaMonkey in /usr/lib. I clicked the latest version and SeaMonkey started, but with only Flash; Flashblock isn't in it.
You probably installed SM addons for SM 1.1.x or 2.0.x. They won't work with latest SM.

Latest SM has a addons manager, you use that to download new addons.

Posted: Sat 12 Nov 2011, 00:28
by pemasu
fp.dowload.macromedia has been unable to download flashplayer 10 or 11 for me today. I noticed the problem during my testing. I have changed to use 8.8.8.8 for ping test so that was not the problem. And fp.download.macromedia ip address responded to the ping (numerical version). I did the test in that dpup. I used your delayedrun from 27.10 woof. I had only changed to use 11 flash. But I got the same failure with 10 flash script content.

Posted: Sat 12 Nov 2011, 00:30
by BarryK
gcmartin wrote:@Barry I like the collection. and I like the applications functionality. Further, the systems are using RAM as you intend them to.

BUT ...
FirstRun is posing a hardship on Live media users who are trying to test RACY for your preparation to General Release. Each time we restart thru the FirstRun dialogue, it is a hardship. Each time we test on a different machine to look for issues for you, it is a hardship. Our time is valuable too with family and work and ...

This is an important hardship.

Could you consider retracting it, while you replace/resolve it to avoid others getting an unpleasant taste.?

Might be the best step for the community at this time.
Huh? Why are you complaining? Quick Setup had one bug, due to a change of <comboboxtext> to <combobox> tag. Now fixed.
You are writing as though it is riddled with bugs. As far as I know, there was only that one bug -- which I did not become aware of on my fast laptop, only testers on older hardware noticed it. That is now fixed, so Quick Setup is working nicely.

Posted: Sat 12 Nov 2011, 00:34
by BarryK
jim3630 wrote:
Before I could run the connect wizard, a window popped up asking if I wanted to install the Flash player.
same here.
Again, same answer. the Flashplayer popup cannot occur unless you have an Internet connection.

Posted: Sat 12 Nov 2011, 02:47
by jim3630
BarryK wrote:
jim3630 wrote:
Before I could run the connect wizard, a window popped up asking if I wanted to install the Flash player.
same here.
Again, same answer. the Flashplayer popup cannot occur unless you have an Internet connection.
Barry,

not having an answer I started over again pfix=ram and noticied where Flash player pop up occured the first time was actually at the firewall dialog pop up. you are correct the connection was established. I had to answer the Flash pop up before could finish the firewall dialog.

however, this time the Flash pop up delayed until finished with the firewall dialog. odd, as have no added pets etc., to intervene.

Posted: Sat 12 Nov 2011, 08:36
by Sage
The Flashplayer popup has been criticised as coming up too soon.
No need for it to pop-up at all, connection or no connection, until the browser is clicked. It is a valid statement that the present arrangement is 'annoying' from the user viewpoint, although I would advocate 'unnecessary distraction'. Testers (testees?!) aren't necessarily going to jump onto the Interweb immediately - they may want to fix their sound or wi-fi first! .sfs are largely irrelevant for testers unless they are also IT folk - users are often end users rather than coders - that's what everyone is working towards. Delaying Flashplayer pop-up until a browser is selected from a drop-down menu has already been implemented and is immensely helpful.