centos 6已不支持新版本chrome的安装。
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/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
安装google chrome浏览器:
yum -y install google-chrome-stable
如果Google官方源无法使用,可以添加以下参数来安装:
yum -y install google-chrome-stable --nogpgcheck
建立软连(非必要步骤,安装的时候可能会自动创建)
ln -s /usr/bin/google-chrome /opt/google/chrome/google-chrome
默认下用root用户启动chrome会报错,需要修改配置
vim /usr/bin/google-chrome
修改如下
将 exec -a "$0" "$HERE/chrome" "$@" 改为
exec -a "$0" "$HERE/chrome" "$@" --no-sandbox
来源:oschina
链接:https://my.oschina.net/penngo/blog/4327666