centos8 install Google Chrome

add google-chrome source

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

Add the following:

[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

Clean rebuild:

yum clean all
yum makecache

Install

yum -y install google-chrome-stable --nogpgcheck

Guess you like

Origin blog.csdn.net/m0_58086930/article/details/129290128