install chrome on centos
- Open the Terminal application. Grab 64bit Google Chrome.
 - Type the following command to download 64 bit version of Google Chrome:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm - Install Google Chrome and its dependencies on a CentOS/RHEL, type:
sudo yum install ./google-chrome-stable_current_*.rpm - Start Google Chrome from the CLI:
google-chrome & 
Enable Google YUM repository
Add following to /etc/yum.repos.d/google.repo file:
32-bit
32-bit
[]name=Google - i386baseurl=http://dl.google.com/linux/rpm/stable/i386enabled=1gpgcheck=1gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
64-bit
[google64]name=Google - x86_64baseurl=http://dl.google.com/linux/rpm/stable/x86_64enabled=1gpgcheck=1gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
Note: Both 32-bit and 64-bit repos can be placed in the same file.
Install Google Chrome with YUM (as root user)
Install Google Chrome Stable Version
## Install Google Chrome Stable version ##yuminstallgoogle-chrome-stable
Install Google Chrome Beta Version
## Install Google Chrome Beta version ##yuminstallgoogle-chrome-beta
Install Google Chrome Unstable Version
## Install Google Chrome Unstable version ##yuminstallgoogle-chrome-unstable
Comments
Post a Comment