centos 7 安装chrome

╄→尐↘猪︶ㄣ 提交于 2020-08-08 04:55:07

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

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!