标签:
FROM: http://tecadmin.net/install-google-chrome-in-centos-rhel-and-fedora/
Google Chrome is a freeware web browser developed by Google. It was released as a beta version for Microsoft Windows on September 2, 2008, and as a stable public release on December 11, 2008. Google Chrome 39 is latest stable version available to download.
Google Chrome 39 Released: This article will help you to install Google chrome on CentOS & RHEL 6 and Fedora 19/18.
Richard Lloid provided an shell script to grab libraries from a more recent Linux distro, put them in a tree (/opt/google/chrome/lib) exclusively picked up by Google Chrome and then you can indeed run Google Chrome on CentOS 6.5 or later. Read More
# wget http://chrome.richardlloyd.org.uk/install_chrome.sh # chmod +x install_chrome.sh # sh install_chrome.sh
If you are using older version of Linux distribution, This script will prompt you for confirmation to upgrade system. As per Richard Lloid we need to upgrade system by typing yes to work properly.
Use following command to start Google Chrome from non root account.
$ google-chrome
or start process in background
$ google-chrome &
If you have used above shell script to install Google chrome. Then you can use use following command to uninstall Google Chrome and its dependencies added by this script.
# sh install_chrome.sh -u
Error 1: Facing below error while starting Google chrome.
# google-chrome
/usr/bin/google-chrome: /usr/lib/libnss3.so: version `NSS_3.14.3′ not found (required by /usr/bin/google-chrome)
Solution - Update nss package to latest version
# yum update nss
References:
http://chrome.richardlloyd.org.uk/
[转载]How to Install Google Chrome 39 in CentOS/RHEL 6 and Fedora 19/18
标签:
原文地址:http://www.cnblogs.com/wmx3ng/p/4186341.html