Archive

Posts Tagged ‘Chrome’

How to install Google Chromium on the Acer Aspire One running Mint Linux

March 24th, 2010 John 3 comments

Google Chrome is a popular web browser based on the open source Chromium browser.

It’s possible to install Chromium on the Acer Aspire One on several OS’s

To install Chromium on the Acer Aspire One running Linpus read this post

To install Chromium on the Acer Aspire One running Mint Linux follow this procedure:

1) Open a Terminal Window and type: sudo apt-get install gedit

Input your admin password if required, this will install the gedit text editor

2) In the Terminal Window type sudo gedit /etc/apt/sources.list    and again enter your admin password if required, this will open redit.

3) Enter the following 2 lines at the bottom of the document

deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main
deb-src http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main

Save the file.

4) In the terminal window copy and paste the following line: sudo apt-key adv –recv-keys –keyserver keyserver.ubuntu.com 0xfbef0d696de1c72ba5a835fe5a9bf3bb4e5e17b5

5) In the terminal window type sudo apt-get update

6) In the terminal window type sudo apt-get install chromium-browser

Chromium will now install, and should be available in the Internet program section.

or you can run the application by typing chromium-browser in a terminal window.

Related Articles

Follow me on Twitter: http://twitter.com/netbookjohn

  • Facebook
  • Reddit
  • Twitter
  • Digg
  • StumbleUpon
  • Faves
  • Share/Bookmark

How to install Google Chrome on Mint Linux

February 14th, 2010 John 2 comments

As Standard Mint Linux is supplied with the FireFox Browser, which is a great and secure browser that always produces great results when rendering pages, but it’s not always the quickest option.

It’s useful to have 2 different browsers installed on you computer as different browsers have different strengths, and if you want a quick and speedy browsing experience then check out Google Chrome, which renders web pages extremely quickly.

To install Google Chrome on Mint Linux.

1) Click here

2) Click on Accept and Install

3) This will open the file download widow, make sure open with is highlighted and click on OK.4) When the file has downloaded, the install package window will open. Click on Install Package, and Google Chrome will now install.

Google Chrome will now be available in the Internet section of the Programs Menu.

Related Articles

Follow me on Twitter: http://twitter.com/netbookjohn

  • Facebook
  • Reddit
  • Twitter
  • Digg
  • StumbleUpon
  • Faves
  • Share/Bookmark

Chromium stopped working on Acer Aspire One – fixed

January 13th, 2010 John 3 comments

In this post I described how to install Chromium on the Linpus version of the Acer Aspire One.

However a number of you had let me know that the process had stopped working, and nothing happened after you clicked on the Chromium Icon.

So I downloaded and installed the latest version and found that I go the same problem.

When I ran Chromium from the command line I got the following error:

/opt/chrome-linux/chrome: error while loading shared libraries: libbz2.so.1.0: cannot open shared object file: No such file or directory

Fortunately the excellent Macles site had the sollution:

After you have completed the steps described in the previous post:

  • Open a terminal window and type the following 2 lines
  • rm -rf /opt/chrome-linux/libs/libbz2.so.1.0
  • ln -s /lib/libbz2.so.1 /opt/chrome-linux/libs/libbz2.so.1.0

Related Articles

Follow me on Twitter: http://twitter.com/netbookjohn

  • Facebook
  • Reddit
  • Twitter
  • Digg
  • StumbleUpon
  • Faves
  • Share/Bookmark

How to install Google Chrome on the Acer Aspire One

December 9th, 2009 John 14 comments

Recently Google Launched a version of their Chrome Browser for Linux, so I thought I would try it on my Acer Aspire One.

Unfortunately there were some dependency issues which I couldn’t resolve so it didn’t look like it was going to work.

Fortunately Macles has found a solution, I don’t understand it all but it works. It downloads and installs a version of Chromium, which is the open source version of Chrome.

Chromium works very well, it’s nice an speedy and much quicker then the version of FireFox that comes with the Acer Aspire One

Originally published here: http://macles.blogspot.com/2009/05/google-chrome-chromium-for-linux.html (and full credit to Macles) here’s the procedure I followed to install Chromium:

Open a terminal window and type the following:

  • sudo mkdir -pm 777 /opt/chrome-linux/libs
  • cd /opt/chrome-linux/libs
  • wget http://koji.fedoraproject.org/packages/gcc/4.3.2/7/i386/libstdc++-4.3.2-7.i386.rpm
  • wget http://mirrors.kernel.org/fedora/updates/9/i386.newkey/nspr-4.7.3-1.1.fc9.i386.rpm
  • wget http://mirrors.kernel.org/fedora/updates/9/i386.newkey/nss-3.12.2.0-3.fc9.i386.rpm
  • wget http://mirrors.kernel.org/fedora/updates/9/i386.newkey/pango-1.20.4-1.fc9.i386.rpm
  • wget http://koji.fedoraproject.org/packages/cairo/1.6.4/1.fc9/i386/cairo-1.6.4-1.fc9.i386.rpm
  • wget http://mirrors.eu.kernel.org/fedora/updates/10/i386/pixman-0.12.0-3.fc10.i386.rpm

  • for i in `ls *rpm`; do rpm2cpio $i | cpio -idv; done; mv lib/* usr/lib/* $PWD
  • for i in `ls lib*so`; do ln -s $i $i.0d; ln -s $i $i.1d; done
  • cat << ‘EOF’ > /opt/chrome-linux/libs/chrome.sh
  • #!/bin/sh
  • export LD_LIBRARY_PATH=/opt/chrome-linux/libs:$LD_LIBRARY_PATH
  • /opt/chrome-linux/chrome
  • EOF
  • chmod 755 /opt/chrome-linux/libs/chrome.sh
  • wget -N http://build.chromium.org/buildbot/continuous/linux/LATEST/chrome-linux.zip

  • sudo unzip -o chrome-linux.zip -d /opt
  • sudo chown -R user /opt/chrome-linux
  • sudo mousepad /usr/share/applications/chromium.desktop
  • Paste the following lines into the editor and save the file.

[Desktop Entry]
Name=Chromium
Comment=Chromium
Exec=/opt/chrome-linux/libs/chrome.sh
Icon=/opt/chrome-linux/chrome.png
Terminal=false
Type=Application

Download an icon and add it to the desktop.

    wget http://src.chromium.org/svn/trunk/src/chrome/app/theme/chromium/product_logo_256.png

  • mv product_logo_256.png /opt/chrome-linux/chrome.png
  • dca add 10 “file=’/usr/share/applications/chromium.desktop’”

Screenshot-30A Chromium Icon will now be visible in the Connect Section.

Updated:

Google Updated Chromium and the above process stopped working however once again the excellent Macles site provided the solution.

After you have completed the previous steps:

  • Open a terminal window and type the following 2 lines
  • rm -rf /opt/chrome-linux/libs/libbz2.so.1.0
  • ln -s /lib/libbz2.so.1 /opt/chrome-linux/libs/libbz2.so.1.0

In additon Bryce has hadn’t a comment based on his experience:

“I ended up getting this message after starting

opt/chrome-linux/chrome: /lib/libz.so.1: no version information available (required by /opt/chrome-linux/chrome)
[5392:5400:674040065:FATAL:/b/slave/chromium-rel-linux/build/src/base/nss_util.cc(92)] Check failed: NSS_VersionCheck(“3.12.3?). We depend on NSS >= 3.12.3. If NSS i
s up to date, please update NSPR to the latest version.
./chrome.sh: line 3: 5392 Trace/breakpoint trap /opt/chrome-linux/chrome

so I had to install new versions of both nss and nspr

wget ftp://fr.rpmfind.net/linux/fedora/updates/10/i386/nss-3.12.3.99.3-2.10.6.fc10.i386.rpm
wget ftp://194.199.20.114/linux/fedora/updates/10/i386/nspr-4.7.6-1.fc10.1.i386.rpm

Related Articles

Follow me on Twitter: http://twitter.com/netbookjohn

  • Facebook
  • Reddit
  • Twitter
  • Digg
  • StumbleUpon
  • Faves
  • Share/Bookmark