Is it possible to install Google Chrome browser on CentOS 6.4

I am using CentOS 6.4 and I want to use google services efficiently, but to improve performance they all require Google Chrome, and I cannot install Google Chrome

Any idea?

Note. Chrome is installed successfully.

0
google-chrome install centos
source share
2 answers

Yes it is possible. With this script .

+2
source share

Add the URL in YUM conf:

vim /etc/yum.repos.d/CentOS-Base.repo 

Add Content:

  [chromium-el6] name=CentOS-$releasever - Chromium EL6 baseurl=http://people.centos.org/hughesjr/chromium/6/$basearch/ gpgcheck=1 enabled=1 gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-Testing-6 

Then run the command:

 yum install chromium 
+2
source share

All Articles