Friday, November 16, 2018

Install Google Chrome on Centos7

1. Enable Yum Repository

    sudo vi /etc/yum.repos.d/google-chrome.repo

    Add the following:

    [google-chrome]
    name=google-chrome
    baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
    enabled=1
    gpgcheck=1
    gpgkey=https://dl.google.com/linux/linux_signing_key.pub


2. Install Google Chrome

    sudo yum install google-chrome-stable

That's all folks.  2 steps only.

Fyi, I referred to https://www.cyberciti.biz/faq/howto-install-google-chrome-on-redhat-rhel-fedora-centos-linux/ for this.

No comments:

Post a Comment

Install MySQL 8.0 on Centos 7

Steps to install MySQL 8.0 Community Edition in Centos 7 1. Enable MySQL 8.0 Repository sudo yum localinstall https://dev.mysql.com...