Page 14 of 19

Posted: Tue 15 Nov 2011, 03:45
by James C
Fresh manual frugal install of Wary 5.2.1.91on my Athlon XP box.Sound,internet and display all good on initial boot.
No problems now with any of the dropdown boxes.
Rebooted and all settings remained persistent.Looks good so far.

Posted: Tue 15 Nov 2011, 03:55
by James C
Forgot the pic....

Posted: Tue 15 Nov 2011, 06:28
by James C
During further testing I've noticed that web pages are very,very slow to load in SeaMonkey.Installed Opera 11.51 with the same result.
Also reported by testers in the Racy thread.
http://www.murga-linux.com/puppy/viewto ... 041#583041

Wary Puppy 5.2.91

Posted: Tue 15 Nov 2011, 07:07
by MagicZaurus
The automatic download of the flashplayer didn't work for me. It seems the file was downloaded, but it was an error reported that installation failed.
After that I installed the flashplayer 10 from the Puppy Package Manager. Installation was fine, but using SeaMonkey all web pages with some flash load very very slow. Sometimes delays of 1-2 minutes.
I didn't create any save file and rebooted. Tested SeaMonkey wihtout any flashplayer installed and the web pages are loading at normal speed.

Posted: Tue 15 Nov 2011, 11:12
by Sage
5.2.1.91:
It seems the file was downloaded, but it was an error reported that installation failed.
Not quite. Yes it does download, but it reports that it 'did not download' rather than 'failed to install'. Weird.
This is different from 5.2.1.90 which fails completely.

Otherwise, same issues with mouse/SM/video as in Racy.

B43 wifi no longer works

Posted: Tue 15 Nov 2011, 20:16
by peebee
Hi Barry

I regret to have to report that this Wary 5.2.1.91 seems to contain the same new Broadcom B43 firmware as is contained in Racy 5.2.1.91 and as a result does not work with my wifi.

I could see from dmesg that newer firmware was being used. [edit]screenshots of ucode13 properties attached showing different dates and sizes - the April 2008 firmware has been around since pup4.3.1 at least...)[/edit]

I copied the old firmware from Wary 5.2 and my B43 wifi then worked as before.

This is definitely a retrograde step for me - and presumably other B43 owners.

Thanks
peebee

gimp-2.6.11 works on Wary Puppy 5.2.1.91

Posted: Wed 16 Nov 2011, 00:38
by shinobar
Wary Puppy 5.2.1.91:
Insert key on seamonkey... OK.

gimp-2.6.11-w5c.sfs compiled against the gtk+-2.24.8-w5c also works on Wary Puppy 5.2.1.91(gtk+-2.20.1-1-w5?).
http://shino.pos.to/party/bridge.cgi?puppy/opt/pup5/
(May NOT work on old Wary/Racy)
./configure --prefix=/usr --host=i486-t2-linux-gnu --sysconfdir=/etc --with-x --without-dbus --without-webkit --disable-python

hostname-set

Posted: Wed 16 Nov 2011, 05:20
by shinobar
hostname-set does not work.
/usr/sbin/hostname-set at line 26:

Code: Select all

if [ "$NEW_HOSTNAME" = "" ];then #111028
should be:

Code: Select all

if [ "$1" = "" ];then

Posted: Wed 16 Nov 2011, 23:03
by BarryK
shinobar,
Thanks, fixed.

Wary Puppy 5.2.1.90 (5.2.2 RC), 10 Nov. 2011

Posted: Thu 17 Nov 2011, 17:21
by Billtoo
Manual frugal install to compaq desktop pc.
The screen resolution,sound, and wired network connection good.
The flash plugin downloaded and works fine.
I used the video upgrade wizard to download and install the mega pack.

Wary Puppy, version 5.2.2 on Thu 17 Nov 2011

Chip description:
0.0 VGA compatible controller
ATI Technologies Inc RV280 [Radeon 9200] (rev 01)
oem: ATI RADEON 9200

X Server: Xorg
Driver used: radeon

X.Org version: 1.11.0
dimensions: 1280x1024 pixels (338x270 millimeters)
depth of root window: 24 planes

# glxgears
832 frames in 5.0 seconds = 166.241 FPS
832 frames in 5.0 seconds = 166.383 FPS
832 frames in 5.0 seconds = 166.372 FPS

Wary 5.2.2 is working well so far.

I made a pet of Seamonkey-2.4.1 that works in newer versions of wary
and racy, some other pups too.
The download link is:


http://www.datafilehost.com/download-b68834ba.html

new mtpaintsnapshot.sh

Posted: Thu 17 Nov 2011, 19:09
by don570
I've rewritten mtpaintsnapshot.sh so that the default folder
to save the screen capture image is the clipart
folder. This is a convenient feature for the user.

Code: Select all

#!/bin/bash
#new version Nov 2011
echo -e "\nlast_dir = /root/my-documents/clipart" > /tmp/add_text
cd /root
sed '/clipart/!s/last_dir = /toolbar99 =  /' .mtpaint  >  .mtpaint_new 
cat .mtpaint_new /tmp/add_text > .mtpaint_new2
mv -f .mtpaint_new2 .mtpaint
rm .mtpaint_new
rm /tmp/add_text 

export Screenshot="	
<window title=\"Screen Capture\">
	
  <frame Please choose>
  <pixmap><input file>/usr/share/pixmaps/gtkam.png</input></pixmap>
  <vbox>
   <button>
    <input file icon=\"gtk-refresh\"></input>
    <label>Wait 10 sec</label>
	<action>(echo 10; sleep 1 ; echo 20; sleep 1 ; echo 30 ; sleep 1 ; echo 40; sleep 1 ; echo 50 ; sleep 1 ; echo 60 ; sleep 1 ; echo 70 ; sleep 1 ; echo 80 ; sleep 1 ; echo 90 ; sleep 1 ; echo 100 ) | Xdialog --title 'Puppy Screenshot' --beep-after --wrap --screen-center --center --no-buttons --gauge '  $LOC300  ' 10 50 100   ; exec mtpaint -s &</action>
	<action>exit: Screenshot</action>
   </button>
   <button>
    <input file icon=\"gtk-apply\"></input>
    <label>  Now</label>
    <action>exec mtpaint -s &</action>
	<action>exit: Screenshot</action>
   </button>
   <button>
    <input file icon=\"gtk-quit\"></input>
    <label>Quit</label>
   </button>
 </vbox>
 </frame>
</window>"

I=$IFS; IFS=""
for STATEMENTS in  $(gtkdialog3 --program=Screenshot --center ); do
	eval $STATEMENTS
done
IFS=$I

exit


Posted: Thu 17 Nov 2011, 19:55
by BarryK
Yes, 5.2.2 "TESTING" available:

http://bkhome.org/blog/?viewDetailed=02599

Posted: Fri 18 Nov 2011, 00:05
by James C
Quick manual frugal install of Wary 5.2.2 "testing" on my Athlon XP box. Sound,internet and display all good on initial boot. Manually installed latest Flash...No problems with SeaMonkey.


# report-video
Wary Puppy, version 5.2.2 on Thu 17 Nov 2011

Chip description:
0.0 VGA compatible controller
nVidia Corporation NV18 [GeForce4 MX 440 AGP 8x] (rev c1)
oem: NVidia
product: NV18 () Board Chip Rev A2

X Server: Xorg
Driver used: nv

X.Org version: 1.3.0
dimensions: 1440x900 pixels (411x263 millimeters)
depth of root window: 24 planes

...the above also recorded in /tmp/root/ as report-video,
and archived with xorg.conf and Xorg.0.log as report-video-full.gz

Computer-
Processor : AMD Athlon(tm) XP 2400+
Memory : 1034MB (128MB used)
Operating System : Unknown distribution
User Name : root (root)
Date/Time : Thu 17 Nov 2011 06:05:32 PM CST
-Display-
Resolution : 1440x900 pixels
OpenGL Renderer : Mesa GLX Indirect
X11 Vendor : The X.Org Foundation
-Multimedia-
Audio Adapter : VIA8233 - VIA 8235


# free
total used free shared buffers
Mem: 1034832 302176 732656 0 39668
-/+ buffers: 262508 772324
Swap: 1228932 0 1228932

Posted: Fri 18 Nov 2011, 07:12
by BarryK
Wary 5.2.2 released

See blog announcement:

http://bkhome.org/blog/?viewDetailed=02602

Posted: Fri 18 Nov 2011, 13:09
by p310don
Download and extract the tar.gz files, and open the torrents with Transmission or your favourite torrent handler.

wary5.2.2 and glxgears

Posted: Sat 19 Nov 2011, 01:39
by scsijon
just a little note

using the intel driver, running 1024x768x24bits

observations on glxgears makes me wonder if what frames we are seeing rotating is right or just a subset of the fps being created

fps says it's running at a good speed, but what is being displayed is lousey.

on top of that, on the same machine, a full install runs slower than a frugal install.

however still slow against puppy528 by a factor of 2 or 2.5

regards

Posted: Sat 19 Nov 2011, 02:44
by broomdodger
wary522
acer travelmate 4670, 1.6GHz dual core, 1GB ram
startup: video ok, wifi ok, flash ok, shiny!

only one problem:
compiling Vim does not find gtk,
so compiles the X11-Athena GUI
rather than the gtk GUI.
It is ok, but not as good.

All other compiled apps ok.

-Bill

Posted: Sat 19 Nov 2011, 04:23
by broomdodger
rary flsynclient crashes to cli
rary522
acer travelmate 4670, 1.6 GHz dual core, 1GB ram

flsynclient

Selecting any 'calibrate' trackpad crashes racy to the cli.

Typing 'xwin' will restart racy.


wary flsynclient NO crash
wary522
acer travelmate 4670, 1.6 GHz dual core, 1GB ram

flsynclient

'calibrate' does NOT crash wary to the cli.
but just like racy522, two finger or side scrolling do not work.

Posted: Sat 19 Nov 2011, 11:01
by nooby
This Iblio thing makes me go nuts. I guess I am spoiled.
30 minutes to download a 130MB big iso? Naah that is too slow.
Maybe somebody can make a fast mirror with password or something :)

Posted: Sat 19 Nov 2011, 16:12
by Sage
Oh dear! The quick right click feature is back - deletes the icon from the desktop.
This was solved fairly recently?