Install Google Chrome on CentOS 7 using yum command

Google Chrome is not available in the default CentOS 7 package repositories, so you will need to add the Google Chrome repository to your system in order to install it using the yum command.

Here are the steps to install Google Chrome on CentOS 7 using yum:

  1. Create a file named “google-chrome.repo” in the “/etc/yum.repos.d/” directory.
  2. Add the following lines to the file:
makefile
[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
  1. Run the following command to download and install the Google Chrome package:
sudo yum install google-chrome-stable
  1. After the installation is complete, you can start Google Chrome by running the following command:
google-chrome

It is important to note that this is the process for installing Google Chrome on CentOS 7, but it is not officially supported by Google. So, if you run into any issues, you may have to seek help from the community.

Leave a Comment