1. 安装
/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--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)图形界面方式

/usr/share/applications/Google Chrome.desktop
/usr/bin/google-chrome-stable %U
/usr/bin/google-chrome-stable %U --no-sandbox

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

原文链接:https://blog.csdn.net/libaineu2004/article/details/82821405