The time now is Wed 22 May 2013, 11:30
All times are UTC - 4 |
|
Page 13 of 26 [385 Posts] |
Goto page: Previous 1, 2, 3, ..., 11, 12, 13, 14, 15, ..., 24, 25, 26 Next |
| Author |
Message |
ally

Joined: 19 May 2012 Posts: 351 Location: lincoln
|
Posted: Fri 22 Feb 2013, 02:36 Post subject:
|
|
thanks micko
will report back tomorrow
|
|
Back to top
|
|
 |
James C

Joined: 26 Mar 2009 Posts: 4742 Location: Kentucky
|
Posted: Fri 22 Feb 2013, 03:27 Post subject:
|
|
| 01micko wrote: | | firefox-19.0 is available in the updates manager |
Appears to be working well.......
| Description |
|
| Filesize |
46.09 KB |
| Viewed |
931 Time(s) |

|
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7018 Location: qld
|
Posted: Fri 22 Feb 2013, 19:51 Post subject:
|
|
I just compiled the latest chromium-25.0.1364.97.
25 has just gone stable. It *should* run on i586 (Athlon-XP, pentium-2) and you will notice there are far less errors logged due to being compiled against true slackware dependencies. (as with the other chromium-24.xxxx that I compiled at ibiblio and mirrors). I'll upload it soon, but as usual, ibiblio is giving troubles. EDIT: uploaded, see below
See http://www.chromium.org/developers/calendar for the current status of chromium. A handy reference.
Download
http://distro.ibiblio.org/puppylinux/pet_packages-slacko14/chromium-25.0.1364.97-i486-s14.pet
checksum <-- 3b2f13e9b6376298a3433971da99d672 chromium-25.0.1364.97-i486-s14.pet
PET REUPLOADED with fixed start script
| Description |
|
| Filesize |
108.07 KB |
| Viewed |
841 Time(s) |

|
_________________ keep the faith .. 
Last edited by 01micko on Sat 23 Feb 2013, 03:57; edited 1 time in total
|
|
Back to top
|
|
 |
James C

Joined: 26 Mar 2009 Posts: 4742 Location: Kentucky
|
Posted: Fri 22 Feb 2013, 23:34 Post subject:
|
|
| gcmartin wrote: | Hi @James C | James C wrote: | | No wonder it's slower, using swap with just the browser open......... | This is an interesting comment. Having swap, you've done a good thing is protecting that your system wouldn't quickly lock as you increase system workload. But I am curious because of an observation I've made about 32bit PUPs I/O subsystem usage when running "pfix=RAM".
If you turn off SWAP, viacould you notice any difference in behavior of the P3 PC? Just curious of what you might observe.
Thanks in advance. |
I already knew what would happen but........ Slacko 5.4.0.3 frugal install with 256 mb ram and swap off.
Pretty obviously got much,much slower...... almost too slow to use.
| Code: | # free
total used free shared buffers
Mem: 253280 245724 7556 0 17988
-/+ buffers: 227736 25544
Swap: 0 0 0
# |
Just took about 30 seconds to open the terminal to run "free".
| Code: | # free
total used free shared buffers
Mem: 253280 246544 6736 0 17812
-/+ buffers: 228732 24548
Swap: 0 0 0
# |
|
|
Back to top
|
|
 |
James C

Joined: 26 Mar 2009 Posts: 4742 Location: Kentucky
|
Posted: Fri 22 Feb 2013, 23:47 Post subject:
|
|
Went ahead and posted the above because I'm expecting a freeze-up at any moment.
| Code: | # free
total used free shared buffers
Mem: 253280 246916 6364 0 20576
-/+ buffers: 226340 26940
Swap: 0 0 0
# |
Opened a video in another tab.....don't know if it's the low-ram issue but cannot play a Youtube video......repeated flash crashes.Going to turn swap back on and try the video again.
|
|
Back to top
|
|
 |
James C

Joined: 26 Mar 2009 Posts: 4742 Location: Kentucky
|
Posted: Sat 23 Feb 2013, 00:05 Post subject:
|
|
Swap back on...... much better.
| Code: | # free
total used free shared buffers
Mem: 253280 248284 4996 0 22432
-/+ buffers: 225852 27428
Swap: 1020092 10064 1010028
# |
Much quicker and videos play again. Swap on slow but usable and swapoff is basically useless.
Testing......
| Description |
|
| Filesize |
61.82 KB |
| Viewed |
774 Time(s) |

|
|
|
Back to top
|
|
 |
James C

Joined: 26 Mar 2009 Posts: 4742 Location: Kentucky
|
Posted: Sat 23 Feb 2013, 00:43 Post subject:
|
|
| 01micko wrote: | | I just compiled the latest chromium-25.0.1364.97. |
I get......
| Description |
|
| Filesize |
20.34 KB |
| Viewed |
761 Time(s) |

|
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7018 Location: qld
|
Posted: Sat 23 Feb 2013, 03:56 Post subject:
|
|
Sorry everyone! wrong start script for chromium!
This is it at /usr/bin/chrome.sh
| Code: | #!/bin/bash
# start script for chromium
USER_DATA_DIR=$HOME/.chromium_dir
[ -f $HOME/.chromium_data ] && . $HOME/.chromium_data
if [ "$UID" = 0 ];then
exec /usr/lib/chromium/chrome --user-data-dir="$USER_DATA_DIR" "$OPTS" "$@"
else
exec /usr/lib/chromium/chrome "$@"
fi
|
If you want to add extra options, like --allow-outdated-plugins just add a line to it.. | Code: | | OPTS="--allow-outdated-plugins" | and older flash will work. This is added to the file $HOME/.chromium_data which you need to create. (HOME=root most of the time). You can add multiple options to OPTS, | Code: | | OPTS="--allow-outdated-plugins --disk-cache-size=10000000" | which limits cache to 10M
Or you can add a different user-data dir with | Code: | | USER_DATA_DIR="/mnt/home/chromium" |
I'll pet the script but the package is reuploading and I'll edit my post with new checksum soon.
| Description |
|

Download |
| Filename |
chromium_start_script-1.pet |
| Filesize |
505 Bytes |
| Downloaded |
22 Time(s) |
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
Jejy69

Joined: 20 Jan 2011 Posts: 656 Location: Perpignan, Lego man, The Last Crusade...
|
Posted: Sun 24 Feb 2013, 10:31 Post subject:
|
|
Hello !
I made KDE 4.10 sfs for Slacko 5.4/5.4.1.
http://www.murga-linux.com/puppy/viewtopic.php?p=687431#687431
Have a nice day !
| Description |
|
| Filesize |
38.35 KB |
| Viewed |
581 Time(s) |

|
_________________ Linux a un noyau, Windows a des pépins.
|
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 908 Location: Malvern, Worcs, UK
|
Posted: Sun 24 Feb 2013, 15:46 Post subject:
|
|
| 01micko wrote: | I just compiled the latest chromium-25.0.1364.97.
|
The new Chromiums (yours and 27 from JamesTheAwesomeDude) seem to be Chrome under the skin - see attached screenie.
slacky has uploaded google-chrome instead of updating Chromium...
http://slackware.org.uk/slacky/slackware-14.0/network/google-chrome/
I wonder what's happening?
Cheers
peebee
| Description |
|
| Filesize |
25.82 KB |
| Viewed |
524 Time(s) |

|
_________________ HP550 laptop: 2GHz Celeron, 2GB ram, Broadcom B43 wifi, Agere HDA modem [2009]
IBM Thinkpad 600: 266MHz PII, 160MB ram, 2GB swap partition, wifi & modem via pcmcia [1999]
Desktop: AMD Athlon II X2 260 4GB, Nvidia GeForce7025[2012]
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7018 Location: qld
|
Posted: Sun 24 Feb 2013, 20:11 Post subject:
|
|
peebee,
I guess it just makes it easier for google... they call the shots.
Only difference really is pepperflash and dependency on gconf (which I hate incidentally.. did I ever mention that? ).
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7018 Location: qld
|
Posted: Sun 24 Feb 2013, 21:11 Post subject:
network_tray |
|
This is for testing before I do the next build, (I finally have a little time to do one!)
network_tray 18k
It is a rewrite of rerwin's version for frisbee integration.
You lose the ability to change themes though, but the icon theme is close to jemimah's frisbee original, except they are in svg format.
Also, I fixed a bug with my IP address showing in the tooltip. It now shows correctly if you connect over ppp. (direct modem). The icon *should change to a mobile phone if you are connected by a mobile phone or 3g modem or to an old phone if connected by analog modem. This is taken care of by a script by rerwin. If connected by ethernet you get blinking screens or by wireless you get the antenna.
This is designed to be NooB friendly
Reports please.
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
gcmartin
Joined: 14 Oct 2005 Posts: 2630 Location: Earth
|
Posted: Mon 25 Feb 2013, 05:48 Post subject:
Re: network_tray |
|
| 01micko wrote: | | This is for testing before .. This is designed to be NooB friendly ... Reports please. | no adverse behavior to report. Used a permanent system to download PET to USB.
Booted pristine, set hostname in FirstRUN, installed PET from USB, setup Frisbee. Nothing abnormal has occurred. All information is current and accurate. And IP is stable without issues.
Is this the kind of report you wanted?
Here to help
_________________ Get ACTIVE; Create Circles; Do those good things which benefit the people's needs!
We are all related ... Its time to show that we know this!
Google's Puppy Search Engine
|
|
Back to top
|
|
 |
SFR

Joined: 26 Oct 2011 Posts: 570
|
Posted: Mon 25 Feb 2013, 08:30 Post subject:
network_tray |
|
| 01micko wrote: | | Reports please. |
Everything's fine here (eth0).
Greetings!
_________________ [O]bdurate [R]ules [D]estroy [E]nthusiastic [R]ebels => [C]reative [H]umans [A]lways [O]pen [S]ource
Omnia mea mecum porto.
|
|
Back to top
|
|
 |
bigpup

Joined: 11 Oct 2009 Posts: 3687 Location: Charleston S.C. USA
|
Posted: Mon 25 Feb 2013, 11:11 Post subject:
|
|
O1micko,
An example of a problem that seems to be common with USB flash drive installs. Not finding the Puppy main sfs file on bootup. I am seeing reports of this, more and more, dealing with Slacko and Precise.
As rcrsn51 points out.
| Quote: | | This may be a timing issue. Other distros, like Fatdog, have a "waitusb" option to handle the problem. |
http://murga-linux.com/puppy/viewtopic.php?t=84601
_________________ I have found, in trying to help people, that the things they do not tell you, are usually the clue to solving the problem.
Puppy Help 101 An interactive tutorial for Puppy 5.2.5
|
|
Back to top
|
|
 |
|
|
Page 13 of 26 [385 Posts] |
Goto page: Previous 1, 2, 3, ..., 11, 12, 13, 14, 15, ..., 24, 25, 26 Next |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|