前提:必须要能上外网!
第一步:设置阿里云yum源
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
第二步:配置google yum源
# vim /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=0
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
第三步:yum安装google
# yum -y install google-chrome-stable --nogpgcheck
设置root用户能够使用google浏览器
第四步:添加google-chrome快捷方式到桌面(双击图标trust后可以显示图标)
# cp /usr/share/applications/google-chrome.desktop /root/桌面/
第五步:桌面图标右击-->属性-->启动命令后添加“--no-sandbox”
即:/usr/bin/google-chrome-stable %U --no-sandbox