centos7安装chrome

编程

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

 

以上是 centos7安装chrome 的全部内容, 来源链接: utcz.com/z/517863.html

回到顶部