天天看点

Centos7使用yum安装chrome浏览器1.安装yum知识库2.安装

1.安装yum知识库

新建 /etc/yum.repos.d/google-chrome.repo,写入如下内容:

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

2.安装

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

继续阅读