Centos 安装Chrome
使用root账号新建文件/etc/yum.repos.d/chrome.repo
,保存下面内容
[Chrome]
name=Google Chrome - x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
如果要装32位,使用下面内容:
[Chrome]
name=Google Chrome - i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
保存之后执行下面命令即可:
如果要安装stable(稳定版)yum install google-chrome-stable
如果要安装betayum install google-chrome-beta
如果要安装unstableyum install google-chrome-unstable
如果环境无法访问https://dl-ssl.google.com/linux/linux_signing_key.pub,可以使用命令跳过gpgcheck
yum install google-chrome-stable --nogpgcheck
0