The time now is Fri 22 Jan 2021, 12:01
All times are UTC - 4 |
Page 30 of 38 [564 Posts] |
Goto page: Previous 1, 2, 3, ..., 28, 29, 30, 31, 32, ..., 36, 37, 38 Next |
Author |
Message |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Fri 07 Sep 2018, 16:06 Post subject:
|
|
For LxPupSc only.....from Debian Sid.....
chromium_69.0.3497.81-3+pepper_30.0.0.154_lxsc_spot.sfs
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Wed 12 Sep 2018, 11:24 Post subject:
chromium_69.0.3497.100+pepper_31.0.0.122 |
|
Sorry - not fully tested except for LxPupSc and UPupBB / UPupCC....
chromium_69.0.3497.100+pepper_31.0.0.122_lx_spot.sfs
chromium64_69.0.3497.100+pepper_31.0.0.122_lx_spot.sfs
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
Last edited by peebee on Wed 10 Oct 2018, 03:50; edited 3 times in total
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Thu 13 Sep 2018, 12:57 Post subject:
|
|
For LxPupSc only.....from Debian Sid.....
chromium_69.0.3497.100-1+pepper_31.0.0.122_lxsc_spot.sfs
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
Last edited by peebee on Sun 14 Oct 2018, 04:55; edited 1 time in total
|
Back to top
|
|
 |
mow9902
Joined: 26 Nov 2008 Posts: 187
|
Posted: Sat 29 Sep 2018, 20:39 Post subject:
Thank you |
|
peebee - I want to thank you for these packages. I have been using them for some time without issue. Keep them coming please.
For the information of anyone interested:
(a) although many of these packages are marked as "not fully tested except for LxPupSc", I have found that they work perfectly on my tahrpup system.
(b) although they are designed to run-as-spot, I prefer to run them as root and do so without issue
(c) mine is a 32bit system so I only use the 32bit version of these packages
(d) I prefer to run these programs from a directory on an external usb disk (rather than as an SFS) - so
1. I create a new directory on my external drive
2. I mount the SFS supplied by peebee and copy the 'usr' folder to my directory
3. I add an extra 'wrapper' script (run-chromium) to the root of that folder
..then I just execute the wrapper script and it all works.
What's in the wrapper?
(a) determine the current directory where the program is stored
(b) add this folder to library path
(c) exec chromium using
- the user profile flag I choose
- the pepper flash path
- the disk cache size
- the media cache size
- outdated plugins
- no sandbox
This might or might not be a good thing to do, and it might or might not work for anyone else, but it works for me. Here's the full script:
#!/bin/sh
# Chromium32 launcher
## Geoff mod
## This program could be launched run from a USB stick or from a directory somewhere on the hard disk. We need to know, so
## we can setup the correct program paths - so:
## -read current directory and store the value in variable $WHEREAMI
## -add the current directory to the system program search path
# set directory path
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
WHEREAMI="$( cd -P "$( dirname "$SOURCE" )" >/dev/null && pwd )"
cd $WHEREAMI
## Add current directory to system library path
LD_LIBRARY_PATH="$WHEREAMI":$LD_LIBRARY_PATH
export LD_LIBRARY_PATH
##
## Add the newer or extra libraries required for this program - stored in subfolders of my-libs directory
LD_LIBRARY_PATH=/root/my-libs/nss:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH
#export LD_LIBRARY_PATH=/usr/lib/chromium:$LD_LIBRARY_PATH
export CHROME_VERSION_EXTRA="Puppy Linux LxPup"
##
## Geoff mod
## -change the executable path to prefix it with the value of the current directory now stored in $WHEREAMI
## -set the user data directory to a directory which we know exists (/mnt/home)
#run-as-spot exec $WHEREAMI/usr/lib/chromium/chromium --disk-cache-dir=/tmp/chrome_browser_profiles/chromium --ppapi-flash-path=$WHEREAMI/lib/chromium/PepperFlash/libpepflashplayer.so --disk-cache-size=10000000 --media-cache-size=10000000 --allow-outdated-plugins "$@"
exec $WHEREAMI/usr/lib/chromium/chromium --user-data-dir=/mnt/home/gmhAddons/chrome_browser_profiles/chromium --disk-cache-dir=/tmp/chrome_browser_profiles/chromium --ppapi-flash-path=$WHEREAMI/lib/chromium/PepperFlash/libpepflashplayer.so --disk-cache-size=10000000 --media-cache-size=10000000 --allow-outdated-plugins --no-sandbox "$@"
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Mon 01 Oct 2018, 16:42 Post subject:
|
|
chromium_69.0.3497.100+pepper_31.0.0.108 - see above
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Wed 10 Oct 2018, 03:51 Post subject:
|
|
chromium_69.0.3497.100+pepper_31.0.0.122 - see above
Description |
|
Filesize |
134.22 KB |
Viewed |
1626 Time(s) |

|
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Sun 14 Oct 2018, 12:41 Post subject:
|
|
For LxPupSc only.....from Debian Sid.....
chromium_70.0.3538.110-1+pepper_31.0.0.153_lxsc_spot.sfs
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
Last edited by peebee on Tue 20 Nov 2018, 13:21; edited 6 times in total
|
Back to top
|
|
 |
mow9902
Joined: 26 Nov 2008 Posts: 187
|
Posted: Mon 22 Oct 2018, 04:49 Post subject:
|
|
Hey Peebee - do you have a chromium 70 version which might work on other distros? (like you have distributed previously) eg v69.0.3497.100 works for me on my tahr system. Just looking to update to a v70 base if I can.
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Fri 26 Oct 2018, 14:46 Post subject:
chromium_70.0.3538.102+pepper_32.0.0.101 |
|
32-bit:
chromium_70.0.3538.102+pepper_32.0.0.101_lx_spot.sfs
64-bit:
chromium64_70.0.3538.102+pepper_32.0.0.101_lx_spot.sfs
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
Last edited by peebee on Wed 05 Dec 2018, 11:19; edited 4 times in total
|
Back to top
|
|
 |
Smithy

Joined: 12 Dec 2011 Posts: 1157
|
Posted: Thu 01 Nov 2018, 06:07 Post subject:
|
|
Tried my first ever google centric browser Peebee, 70 (32 bit) working spot on, does the recaptcha thing without crashing, and good to see adjustable advanced preferences in spot.
Turned it into an Adrv, so can be just dropped in to replace your Light browser (which is also pretty good) and then swapped back if you don't encounter google stuff on internet.
Thanks, good work as usual!
|
Back to top
|
|
 |
mow9902
Joined: 26 Nov 2008 Posts: 187
|
Posted: Sat 03 Nov 2018, 17:29 Post subject:
|
|
Thanks peebee - unfortunately this version does not work on my tahr system as the previous versions have.
This v70 is looking for a file called libepoxy.so.0 which has not been required by previous versions you've posted.
I've done some searching around the web but cannot find the appropriate version of this file for puppy.
Any chance you might have it included in your system anywhere?
(of course I realize that even after loading this file, there may be other dependencies which are also missing ...so this might be a waste of time)
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Sun 04 Nov 2018, 03:00 Post subject:
|
|
mow9902 wrote: | This v70 is looking for a file called libepoxy.so.0 which has not been required by previous versions you've posted. |
https://slackware.pkgs.org/14.2/slackware-i486/libepoxy-1.3.1-i586-1.txz.html
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
|
Back to top
|
|
 |
mow9902
Joined: 26 Nov 2008 Posts: 187
|
Posted: Sat 10 Nov 2018, 16:31 Post subject:
|
|
Thanks again peebee. Unfortunately it appears this version is just not going to work on my tahr system.
After loading libepoxy I get the following error:
usr/lib/chromium/libgtk-3.so.0: undefined symbol: g_type_check_instance_is_fundamentally_a
So, thanks for your patience. Unless there is anyone else with some knowledge who might be interested in chromium on tahr I will just have to wait and see what happens with your future versions - and if they don't work either, then I guess I go back to using firefox. I appreciate your efforts in providing these chromium browsers to date.
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Tue 13 Nov 2018, 12:00 Post subject:
|
|
Pepperflash now 32.0.0.101.....chromium_70.0.3538.102+pepper_32.0.0.101
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
Last edited by peebee on Wed 05 Dec 2018, 11:20; edited 1 time in total
|
Back to top
|
|
 |
peebee

Joined: 21 Sep 2008 Posts: 4391 Location: Worcestershire, UK
|
Posted: Wed 05 Dec 2018, 11:19 Post subject:
|
|
PepperFlash now 32.0.0.101
_________________
LxPup = Puppy + LXDE
Main version used daily: LxPupSc; Assembler of UPups, ScPup & ScPup64, LxPup, LxPupSc & LxPupSc64
|
Back to top
|
|
 |
|
Page 30 of 38 [564 Posts] |
Goto page: Previous 1, 2, 3, ..., 28, 29, 30, 31, 32, ..., 36, 37, 38 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
|