Puppies 4.31.1 Puppy linux 4.30 Plus fixes and FireFox 3.5.3

News, happenings
Message
Author
davesurrey
Posts: 1198
Joined: Tue 05 Aug 2008, 18:12
Location: UK

#166 Post by davesurrey »

Just to further confirm what has been suggested above, I've experienced image rendering problems with FF3.5 on both Pup431.1 and ttuuxxx's 214X series on a few sites. This is on my test PC using nvidia graphics cards (tried 2 of them.) and xorg.

But when I tried using xvesa just now the problem disappears.

Also 431.1 works just fine on another PC using a Radeon ATI card under xorg.

FWIW, HTH
Dave

User avatar
ttuuxxx
Posts: 11171
Joined: Sat 05 May 2007, 10:00
Location: Ontario Canada,Sydney Australia
Contact:

#167 Post by ttuuxxx »

That means Dave probably for 2.20 I'll have to compile X-server with extra features, There's noway that I'm going to drop Firefox 2-3.5 since I finally figured out what makes it runs smoothly on my pc for the first time in 4 series. The only issue are which extras are needed, probably just a trial and error until I get it right on 2.20 and then I could drop the older X-server, I'll start on it probably during the end of the weekend, Still sick as a dog. What a nasty cold I have.
ttuuxxx
http://audio.online-convert.com/ <-- excellent site
http://samples.mplayerhq.hu/A-codecs/ <-- Codec Test Files
http://html5games.com/ <-- excellent HTML5 games :)

User avatar
dejan555
Posts: 2798
Joined: Sun 30 Nov 2008, 11:57
Location: Montenegro
Contact:

#168 Post by dejan555 »

Hey ttuuxxx finally downloaded your iso to try out, I got one with standard Xserver, I have ATI Radeon 9250, no firefox crashes here, flash sites work too but maybe not optimum overall like in your 2.x series, there's a bit of slowdown.

Now goes my usual whining about hiawatha, pplog says 403 forbiden when I try to start it, haven't tested yet if it works for others as webserver but I see it's bind to 127.0.0.1 interface in config

I really like how you configure firefox with puppy links on toolbar and simple mail and google homepage, that's so cool, since I start using dpup with your ff package I barely use seamonkey.

Hope you get better soon, beat that cold...
puppy.b0x.me stuff mirrored [url=https://drive.google.com/open?id=0B_Mb589v0iCXNnhSZWRwd3R2UWs]HERE[/url] or [url=http://archive.org/details/Puppy_Linux_puppy.b0x.me_mirror]HERE[/url]

davesurrey
Posts: 1198
Joined: Tue 05 Aug 2008, 18:12
Location: UK

#169 Post by davesurrey »

Yes ttuuxxx I agree and I definitely wouldn't want you to drop FF3.5. Just trying to give you guys some confirmation to help pin point what might need to be done.

Another bit of the jigsaw...I just downloaded dpup476j on the PC that gives some rendering trouble with 214X and 431.1 and all was well with FF. So whatever they use in dpup seems to work.
HTH

Get well :-)
Dave

scsijon
Posts: 1596
Joined: Thu 24 May 2007, 03:59
Location: the australian mallee
Contact:

#170 Post by scsijon »

Firstly, I must say, Great Version Ttuuxxx, by the look if things and it seems to be fairly stable at last (knock wood).

However a question :?:

If I would like a xvesa only version, what is the loss, both in size and what apps will no longer work? And would you please consider building one.

I have boxes I look after that I doubt will ever want xorg due to their limitations and i'd like to update them from 2.16.1. plus a few patches and pet's.

thanks
scsijon
ps do you have a thread for your 2.20 posted somewhere?

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

#171 Post by James C »

About Firefox:

In my 430 install I have Wolf Pup's FF 3.5.3 and it is solid, no problems at all.Scrolling, Flash and streaming video all work great.

I have ttuuxxx's FF 3.5.3 in Dpup, 2.14 X 2.20 and 4.31 and no real problems on any of those either. These results are with onboard Intel graphics and xorg.

There is some kind of variable, we just need to find it. :)

User avatar
Gedrean
Posts: 139
Joined: Fri 05 Jun 2009, 05:59

#172 Post by Gedrean »

Hey ttuuxxx, love this version, grabbed it after about 10 minutes of playing around on 430 official, replaced my frugals with these, and loving it. So far only had to install 2 (!) PETs, one game and one Pidgin, and think this is so far the best puppy experience yet.

Only problem I had was, and not sure if this is with yours or with puppy 430 in general, that Aqualung would never actually open with a file I clicked on, I had to afterwards drag it in there.
Also the Aqualung script, when I read it, seemed horribly inefficient. Kill the other processes, then relaunch, with the argument? Not too elegant either.

So I had about 5 hours of editing, finding that behaviors would change from minute to minute (probably my corrupted computer somehow), and agonizing over the Aqualung command line options and their strange intricacies (sometimes they will behave as advertised, ONLY if other arguments exist) but here's what I've done:

I've managed to make the default behavior for Aqualung to Enqueue (add to playlist without clearing rest of it), caused it to only ever open ONE process and not need to kill others, and set it up so that there's a right-click for directories to enqueue the whole directory and contents in as well! (Great for my huge music directory!)

I've got three files I'll paste in code, they're very short, and I'll detail what I did (something I wish others would do, as bash scripts are incredibly hard to read!)

First, aqualung launcher script, located in /usr/bin :

Code: Select all

#!/bin/sh
exec aqualung2 --session=0 -E /dev/null "$@"
--session=0 tells it to do remote cue functions (according to the aqualung usage text) with session #0, which is either the first one already opened (and in this case the only) or the one which is opening now if no other session exists.
If you'll note, especially ingenious, it attempts to Enqueue /dev/null, which will fail out with an error that it is unable to open that file ... this is required so that the -session=0 will actually do anything other than opening a new session.
-E tells it to enqueue, and then it adds the remainder of any files. I spent a good amount of time making it add files with unicode/utf-8 chars, and spaces, and goofy characters, and it all works!

Next, defaultaudioplayer script, located /usr/local/bin, and as an added bonus this is the same code for the Add to Audiolung Queue script located in ~/.config/rox.sourceforge.net/OpenWith/.inode_directory :

Code: Select all

#!/bin/sh
exec aqualung "$@"
Of course, aqualung2 is the name of the aqualung app itself, sitting in /usr/bin.

Thought I might share these and see what people (you, others?) think, and maybe contribute a bit more than requests to the whole puppy thing.:)

User avatar
ttuuxxx
Posts: 11171
Joined: Sat 05 May 2007, 10:00
Location: Ontario Canada,Sydney Australia
Contact:

#173 Post by ttuuxxx »

Gedrean wrote: Thought I might share these and see what people (you, others?) think, and maybe contribute a bit more than requests to the whole puppy thing.:)
One question with the way you described above what happens with streamtuner? when you select one station and then select another?
Does it work, does it open multiple windows, does it automatically start like it should?, BMP works the best with streamtuner to function as a united unit.
ttuuxxx
http://audio.online-convert.com/ <-- excellent site
http://samples.mplayerhq.hu/A-codecs/ <-- Codec Test Files
http://html5games.com/ <-- excellent HTML5 games :)

timremy
Posts: 238
Joined: Sat 27 Jun 2009, 04:42

4.31.1

#174 Post by timremy »

hello

real player 11 will not unload.

any help.

thank you

timremy

User avatar
T_Hobbit
Posts: 400
Joined: Sat 27 May 2006, 10:50
Location: Portugal - Lisbon

#175 Post by T_Hobbit »

I feel network wizard very unprecise in Puppy430/Puppies43x. Sometimes it sees the my network, sometimes not. Never starts my lan after reboot.
And this topic is too long to look for a solution.
Help please!
And please start a new topic for next release!!!
T_Hobbit
:idea: Rebuilding old DOS Machine for Wing Commander Privateer and Puppy :!: Old spare parts to give away - anyone interested :?:

User avatar
Gedrean
Posts: 139
Joined: Fri 05 Jun 2009, 05:59

#176 Post by Gedrean »

ttuuxxx wrote:
Gedrean wrote: Thought I might share these and see what people (you, others?) think, and maybe contribute a bit more than requests to the whole puppy thing.:)
One question with the way you described above what happens with streamtuner? when you select one station and then select another?
Does it work, does it open multiple windows, does it automatically start like it should?, BMP works the best with streamtuner to function as a united unit.
ttuuxxx
I honestly did not know that streamtuner called defaultaudioplayer - I thought it was its own audio player. One sec, I'll test...

It enqueues it to the playlist at the bottom. It does not automatically start playing, but this is because of the /dev/null there - if the --play tag is inserted it tries to play dev null, fails, and stops playing.

So, here's the solution, a tiny tiny rewrite to the aqualung script:

Code: Select all

#!/bin/sh
exec aqualung2 --session=0 --enqueue "$@" /dev/null
This way, if --play is not tagged in, any files added through rox or sakura/rxvt are added in without disrupting current play, if any...
and if --play is tagged in, the stream or file is added in at the end of the queue but started automatically!
All behaves as desired I think.

So, use that script instead of my original, and in streamtuner make the commands for both:

Code: Select all

aqualung --play %q
And that'll cause it to work right!

EDIT: Crap no... :(
Turns out that Streamtuner creates a temp M3U file. Aqualung, when passed an M3U file, will make that its playlist or append it to its playlist - but since an M3U can have multiple entries and Aqualung doesn't assume if it only has one or not, --play makes no difference.

The code changes are still good to make sure other things play if triggered in other ways, so they should still be used, but Streamtuner does NOT force Aqualung to play on load. I can imagine if someone wrote a script to parse an M3U like streamtuner's and then passed aqualung the individual URL with --play it would work...
Most of the streamtuner m3u's only seem to have one URL - for those that have two they could both be parsed together, but the first would play.

To be honest that's a LITTLE beyond my scope of bash skillz, but it would require that the file be opened, parsed for the M3U syntax, then run through line by line to grab each URL, put them together in a string separated by spaces, pass to aqualung as:

Code: Select all

aqualung --play <url1> <url2> ... <urln>
For each of the URLs to N urls in the file. That will enqueue all the URLs and begin playing #1.

Good luck on that whoever takes it.:)

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

#177 Post by DaveS »

Got this working wonderfully well now and its brilliant Ttuuxxx. Not one single Firefox problem, scrolls fast, plays video full screen. Open Office loads pretty quick and renders nicely. Ttcorefonts now working (had to do a new Pupsave). Remaster was very fast using dual-core abilities. This is one great Pup... thanks a million.
ps. ttcorefonts/Hpliplite/Java/Pwidgets/Main driver set, 157MB re-master, not too shabby :)
Spup Frugal HD and USB
Root forever!

User avatar
T_Hobbit
Posts: 400
Joined: Sat 27 May 2006, 10:50
Location: Portugal - Lisbon

#178 Post by T_Hobbit »

Network problem solved by running network wizard old version's.
Trying it right now.
T_Hobbit
:idea: Rebuilding old DOS Machine for Wing Commander Privateer and Puppy :!: Old spare parts to give away - anyone interested :?:

timremy
Posts: 238
Joined: Sat 27 Jun 2009, 04:42

puppies 4.31.1

#179 Post by timremy »

hello

i got real player 11 to unload and play. i had to go to a

realplayer-11.pet i saved from puppylinux.ca.

no big deal, i guess. aqualung and streamtuner are very nice.

sorta preference i guess.

but puppy linux is still an outstanding operating system and

my salute goes to all those envolved. sometimes our tempers

flare up, but that's life.

timremy

arslan
Posts: 19
Joined: Thu 25 Jan 2007, 11:10
Location: Belgrade, Serbia

elusive ndiswrapper

#180 Post by arslan »

Hi everybody,

thank you very much ttuuxxx for this great version, I am
really enjoying it! However, I have one problem:

Yesterday I put 4.31.1 (old X.org, if that is pertinent to this case)
instead of 4.1 Frugal Instal on a Dell Latitude D600;
when I try to use ndiswrapper to load the win driver for my
AirLive WiFi USB, everything goes well until I select the needed
driver. Then comes the message:

rt2870: driver installed

I hit OK, and then I get:

Loading ndiswrapper failed with the following message:
FATAL: Module ndiswrapper not found.
Maybe try a different driver.

I tried both old and new verrsions of Network Setup Wizzard, no difference.

In the earlier version I had no such problem. Any ideas?

Cheers!

User avatar
Lobster
Official Crustacean
Posts: 15522
Joined: Wed 04 May 2005, 06:06
Location: Paradox Realm
Contact:

#181 Post by Lobster »

I quite often run (even alpha releases) as my main desktop.
So I am not just on the leading edge
but often on the volatile side of it. 8)

Because of Composer (built in HTML editing)
I prefer Seamonkey. Most prefer Firefox.
So this is a great thread. :D

Ttuuxxx is one of our hardest working 'out there' developers
Just as many contribute behind the scenes.

We only have had 3 developers known as 'Puppy Masters'
BarryK, GuestToo (retired from active Puppyness) and MU
I now consider Ttuuxxx as our (most volatile) 4th Puppy Master
and Senior Developer. Thanks Ttuuxxx. 8)

Image

and now back to the Puppyness . . .
Puppy Raspup 8.2Final 8)
Puppy Links Page http://www.smokey01.com/bruceb/puppy.html :D

mave
Posts: 129
Joined: Thu 02 Apr 2009, 13:42
Location: Germany

431.1 - old xserver

#182 Post by mave »

Thanks ttuuxxx..

for all your hard work!

For information: 431.1.iso with old-xserver doesn't work for me. Screen (LCD) can't display correctly. Switched back to 430... ;-)

Look at trhe resolution-switcher, hmmmm...

mave

P.S.: #PuppyHardwareProfile=Intel_r_865G_Graphics_ChipL22W_9

User avatar
ttuuxxx
Posts: 11171
Joined: Sat 05 May 2007, 10:00
Location: Ontario Canada,Sydney Australia
Contact:

#183 Post by ttuuxxx »

Lobster wrote:I quite often run (even alpha releases) as my main desktop.
So I am not just on the leading edge
but often on the volatile side of it. 8)

Because of Composer (built in HTML editing)
I prefer Seamonkey. Most prefer Firefox.
So this is a great thread. :D

Ttuuxxx is one of our hardest working 'out there' developers
Just as many contribute behind the scenes.

We only have had 3 developers known as 'Puppy Masters'
BarryK, GuestToo (retired from active Puppyness) and MU
I now consider Ttuuxxx as our (most volatile) 4th Puppy Master
and Senior Developer. Thanks Ttuuxxx. 8)


and now back to the Puppyness . . .
WOW I didn't think I had that coming, kind of hit me by surprise, The first thing I started thinking about is all the developers we have and then It hit me, right now is my time :) So I would like to say to all around, a big thank you to the community and I'll have to add this to my website, my first award :) Feels great !!! I'll continue doing my very best in the future also.
Sincerely
ttuuxxx
Last edited by ttuuxxx on Sat 26 Sep 2009, 09:28, edited 1 time in total.
http://audio.online-convert.com/ <-- excellent site
http://samples.mplayerhq.hu/A-codecs/ <-- Codec Test Files
http://html5games.com/ <-- excellent HTML5 games :)

User avatar
ttuuxxx
Posts: 11171
Joined: Sat 05 May 2007, 10:00
Location: Ontario Canada,Sydney Australia
Contact:

Re: 431.1 - old xserver

#184 Post by ttuuxxx »

mave wrote:Thanks ttuuxxx..

for all your hard work!

For information: 431.1.iso with old-xserver doesn't work for me. Screen (LCD) can't display correctly. Switched back to 430... ;-)

Look at trhe resolution-switcher, hmmmm...

mave

P.S.: #PuppyHardwareProfile=Intel_r_865G_Graphics_ChipL22W_9
Hmmm I've never seen that before, well the newer X-Server is also on page 1, just wondering, do you have a pupsave from 4.30? I'm thinking maybe bootup with puppy pfix=ram
or try the other version.
Wish I had your setup here, would be fun to try and troubleshoot
ttuuxxx
http://audio.online-convert.com/ <-- excellent site
http://samples.mplayerhq.hu/A-codecs/ <-- Codec Test Files
http://html5games.com/ <-- excellent HTML5 games :)

User avatar
mikeb
Posts: 11297
Joined: Thu 23 Nov 2006, 13:56

#185 Post by mikeb »

I now consider Ttuuxxx as our (most volatile) 4th Puppy Master
and Senior Developer. Thanks Ttuuxxx. Cool
It's great to be appreciated....something that you always give to others has now slapped you around the head :D and deservedly so :)

nice one

mike

Post Reply