Size: 438
Comment:
|
← Revision 12 as of 2025-01-16 15:04:01 ⇥
Size: 1914
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 5: | Line 5: |
== Slackbuild == * su * cd /tmp * wget http://slackbuilds.org/slackbuilds/14.0/network/chromium.tar.gz * tar xvzf chromium.tar.gz * cd chromium * wget https://commondatastorage.googleapis.com/chromium-browser-official/chromium-24.0.1312.52.tar.bz2 * ./chromium.SlackBuild |
== Slackbuild libevent == {{{#!highlight bash su cd /tmp wget http://slackbuilds.org/slackbuilds/14.0/libraries/libevent.tar.gz tar xvzf libevent.tar.gz cd libevent wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz ./libevent.SlackBuild installpkg /tmp/libevent-2.0.21-x86_64-1_SBo.tgz }}} Package 64 bit: [[attachment:libevent-2.0.21-x86_64-1_SBo.tgz]] == Slackbuild Chrome == {{{#!highlight bash su cd /tmp wget http://slackbuilds.org/slackbuilds/14.0/network/chromium.tar.gz tar xvzf chromium.tar.gz cd chromium wget https://commondatastorage.googleapis.com/chromium-browser-official/chromium-24.0.1312.52.tar.bz2 ./chromium.SlackBuild installpkg /tmp/chromium-24.0.1312.52-x86_64-1_SBo.tgz }}} Package 64 bit: [[attachment:chromium-24.0.1312.52-x86_64-1_SBo.tgz]] == Enable Java Plugin == Check plug-ins with about:plugins in URL text box {{{#!highlight bash ln -s /opt/java/jre/lib/amd64/libnpjp2.so /usr/lib64/mozilla/plugins/libnpjp2.so ln -s /opt/jdk1.7.0_17/jre/lib/amd64/libnpjp2.so /usr/lib64/mozilla/plugins/libnpjp2.so }}} == Get latest binary of chromium == {{{#!highlight sh cd /tmp REVISION=$(curl -s -S https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Linux_x64%2FLAST_CHANGE?alt=media) echo $REVISION ZIP_URL="https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Linux_x64%2F$REVISION%2Fchrome-linux.zip?alt=media" echo $ZIP_URL wget $ZIP_URL unzip -t Linux_x64*chrome-linux.zip\?alt\=media mv Linux_x64*chrome-linux.zip\?alt\=media Linux_x64_chromium.zip unzip -t Linux_x64_chromium.zip unzip Linux_x64_chromium.zip cd chrome-linux/ ./chrome & # Version 134.0.6961.0 (Developer Build) (64-bit) }}} |
Chromium
Google Chromium is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier.
Slackbuild libevent
Package 64 bit: libevent-2.0.21-x86_64-1_SBo.tgz
Slackbuild Chrome
1 su
2 cd /tmp
3 wget http://slackbuilds.org/slackbuilds/14.0/network/chromium.tar.gz
4 tar xvzf chromium.tar.gz
5 cd chromium
6 wget https://commondatastorage.googleapis.com/chromium-browser-official/chromium-24.0.1312.52.tar.bz2
7 ./chromium.SlackBuild
8 installpkg /tmp/chromium-24.0.1312.52-x86_64-1_SBo.tgz
Package 64 bit: chromium-24.0.1312.52-x86_64-1_SBo.tgz
Enable Java Plugin
Check plug-ins with about:plugins in URL text box
Get latest binary of chromium
1 cd /tmp
2 REVISION=$(curl -s -S https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Linux_x64%2FLAST_CHANGE?alt=media)
3 echo $REVISION
4 ZIP_URL="https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Linux_x64%2F$REVISION%2Fchrome-linux.zip?alt=media"
5 echo $ZIP_URL
6 wget $ZIP_URL
7 unzip -t Linux_x64*chrome-linux.zip\?alt\=media
8 mv Linux_x64*chrome-linux.zip\?alt\=media Linux_x64_chromium.zip
9 unzip -t Linux_x64_chromium.zip
10 unzip Linux_x64_chromium.zip
11 cd chrome-linux/
12 ./chrome &
13 # Version 134.0.6961.0 (Developer Build) (64-bit)
14