CentOS7系列--安装Chrome浏览器
Posted gispathfinder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7系列--安装Chrome浏览器相关的知识,希望对你有一定的参考价值。
CentOS7系列--安装Chrome浏览器
1. 创建yum源文件
[[email protected] ~]# cd /etc/yum.repos.d/
[[email protected] yum.repos.d]# vi 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
2. 安装google chrome
[[email protected] yum.repos.d]# yum -y install google-chrome-stable --nogpgcheck
3. 处理错误
3.1. no-sandbox错误
错误如下:
[[email protected] yum.repos.d]# google-chrome-stable
[9574:9574:0203/164134.417994:ERROR:zygote_host_impl_linux.cc(89)] Running as ro ot without --no-sandbox is not supported. See https://crbug.com/638180.
[[email protected] yum.repos.d]# whereis google-chrome
google-chrome: /usr/bin/google-chrome /usr/share/man/man1/google-chrome.1.gz
处理方式如下:
[[email protected] yum.repos.d]# whereis google-chrome
google-chrome: /usr/bin/google-chrome /usr/share/man/man1/google-chrome.1.gz
[[email protected] yum.repos.d]# vi /usr/bin/google-chrome
将
exec -a "$0" "$HERE/chrome" "[email protected]"
改为
exec -a "$0" "$HERE/chrome" "[email protected]" --user-data-dir --no-sandbox
3.2. 中文乱码
[[email protected] ~]# yum -y install fontconfig
[[email protected] ~]# yum -y groupinstall Fonts
以上是关于CentOS7系列--安装Chrome浏览器的主要内容,如果未能解决你的问题,请参考以下文章