First we have to create entry in yum.repos.d
1 |
# touch /etc/yum.repos.d/google-chrome.repo |
After that we need to enter following information into that file
1 2 3 4 5 6 |
[google-chrome] name=google-chrome - \$basearch 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 |
Now we are ready to go 🙂
1 2 |
# yum update # yum install google-chrome-stable |