Created
July 23, 2016 01:29
-
-
Save kevin-kientopp/f9ee89a7584eaf4e1ac2abe575d701a6 to your computer and use it in GitHub Desktop.
how to install chrome on centos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
# yum info google-chrome-stable | |
# yum install google-chrome-stable | |
Source: http://www.tecmint.com/install-google-chrome-on-redhat-centos-fedora-linux/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment