Enable Google Yum repository
- Create a file called /etc/yum.repos.d/google-chrome.repo and add the following lines of code to it.
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
Install key
-Refer to this guide for more details.
$ wget --no-check-certificate https://dl.google.com/linux/linux_signing_key.pub
$ sudo rpm --import linux_signing_key.pub
Install Google Chrome
$ sudo yum install google-chrome-stable
Start Google Chrome
$ google-chrome &