Centos7安装并启动Google浏览器(★firecat亲测有效★)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/libaineu2004/article/details/82821405

1. 安装

考虑到国内无法访问Google,所以需要自己配置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

默认方法1:安装google chrome浏览器:

yum -y install google-chrome-stable

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

yum -y install google-chrome-stable --nogpgcheck

安装路径是:\opt\google\chrome

2、启动运行(默认情况下,root用户是无法启动的,需要添加参数)

(1)终端方式

进入\opt\google\chrome,root用户下,必须带上参数--no-sandbox,否则运行不起来。

[root@localhost chrome]# ./google-chrome 
[5317:5317:0923/125011.751607:ERROR:zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
[root@localhost chrome]# ./google-chrome --no-sandbox

(2)图形界面方式

root用户下,找到/usr/share/applications/Google Chrome.desktop,鼠标右键弹出菜单->属性->命令,

由原来的字符串/usr/bin/google-chrome-stable %U修改为:

/usr/bin/google-chrome-stable %U --no-sandbox

然后,把文件Google Chrome.desktop拷贝一份到桌面,运行它即可。

猜你喜欢

转载自blog.csdn.net/libaineu2004/article/details/82821405