centos7下安装谷歌浏览器

1. 配置yum源
在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo

cd /ect/yum.repos.d/
vim google-chrome.repo

写入如下内容:

[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

安装google chrome浏览器:

yum -y install google-chrome-stable

Google官方源可能在中国无法使用,导致安装失败或者在国内无法更新,可以添加以下参数来安装:

yum -y install google-chrome-stable –nogpgcheck

2.运行谷歌浏览器
找到chrome路径,并在想要的文件夹下做个软连接,前提得进入该文件夹,方便使用:

which google-chrome-stable
cd /root/SoftWare
ln -s /usr/bin/chrome google-chrome

root用户下是不推荐运行google-chrome的
强制运行命令:

google-chrome –no-sandbox flag

你可能感兴趣的:(linux,centos7)