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

原文地址:https://www.cnblogs.com/gispathfinder/p/10350731.html

时间: 2024-10-10 07:07:44

CentOS7系列--安装Chrome浏览器的相关文章

Centos7下安装Chrome浏览器

官方下载chrome的rpm安装包,直接点击安装,完了后在会在应用中看见安装的chrome浏览器. 打开浏览器时会出现***拦截,选择解除拦截,(执行提示的命令即可) <-----------以下是网上浏览的相关博文------------------> 看到过的http://blog.csdn.net/johnnyhu90/article/details/42127521 下边这个对学习Centos 7很系统,极力推荐(90后博士独立博客) http://seisman.info/linux

[转帖]Centos7 yum安装Chrome浏览器

https://www.cnblogs.com/ianduin/p/8727333.html以及https://blog.csdn.net/libaineu2004/article/details/82821405 注意安装完之后的目录是 /opt/google/chrome root用户启用 chrome 需要使用的命令是 cd /opt/google/chrome ./chrome --no-sandbox root用户下,必须带上参数--no-sandbox,否则运行不起来. 一.创建yu

【转载】CentOS7 安装Chrome浏览器

本篇文章主要记录如何在CentOS7.0上安装Chrome浏览器. 1.配置yum下载源: 在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo, 并且在该文件中添加如下内容: 1 [google-chrome] 2 name=google-chrome 3 baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch 4 enabled=1 5 gpgcheck=1 6 gpgkey=htt

在centos7.x上chrome浏览器yum源配置

在国内Google服务被屏蔽,在官网上下载chrome浏览器很慢所以我尝试配置yum源的方式安装chrome浏览器 百度经验:jingyan.baidu.com 方法/步骤 1 cd  /etc/yum.repos.d/ 2 vi  google.repo 3 [gogle] name=Google-x86_64 baseurl=http://dl.google.com/linux/rpm/stable/x86_64 enabled=1 gpgcheck=0 gpgkey=https://dl-

【Linux】CentOS安装Chrome浏览器

在CentOS 6.x 安装Chrome 浏览器的方法.首先在/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=1 gpgkey=https://dl-ssl.google.com/linux/linux_sign

Ubuntu16.04安装Chrome浏览器及解决root不能打开的问题

1. 安装桌面(emmm,不知道是否只执行第二个命令就行) # apt-get install gonme# apt-get install ubuntu-desktop2. 安装Chrome浏览器 # wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/# wget -q -O - https://dl.google.com/linux/linux_signing_key.p

Ubuntu安装Chrome浏览器,并解决Chrome浏览器无法启动问题

安装Chrome浏览器 #将下载源加入到系统的源列表 sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/ #导入谷歌软件的公钥,用于下面步骤中对下载软件进行验证 wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - #对当前系统的可用更新列表进行更新 s

CentOS7 安装chrome浏览器

本篇文章主要记录如何在CentOS7.0上安装chrome. 1.配置yum下载源: 在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo, 并且在该文件中添加如下内容: 1 [google-chrome] 2 name=google-chrome 3 baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch 4 enabled=1 5 gpgcheck=1 6 gpgkey=https:

centos7安装chrome浏览器

1.配置yum下载源: 在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo, 并且在该文件中添加如下内容: [google-chrome]name=google-chromebaseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearchenabled=1gpgcheck=1gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub