0%

centos7 yum安装谷歌浏览器卸载火狐浏览器

研究了一下在没有代理的情况下在centos7下安装谷歌浏览器

过程

  1. 切换目录

    1
    cd /etc/yum.repos.d/
  2. 创建repo源

    1
    vi google-chrome.repo
  3. 添加以下内容

    1
    2
    3
    4
    5
    6
    [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
  4. 安装google chrome浏览器

    1
    yum -y install google-chrome-stable

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

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

版本

1
2
3
yum install google-chrome-stable    #稳定版
yum install google-chrome-beta #测试版
yum install google-chrome-unstable #不稳定版

问题

如果这个报错是因为qiang的原因

1
2
3
4
.........
从 https://dl-ssl.google.com/linux/linux_signing_key.pub 检索密钥
获取 GPG 密钥失败:[Errno 14] curl#7 - "Failed connect to dl-ssl.google.com:443; Operation now in progress"
..........

卸载火狐浏览器

1
2
3
4
5
6
7
1,首先查看安装的firefox版本

输入命令:rpm -qa | grep firefox

2,根据查找结果进行卸载

输入命令:rpm -e firefox(对应结果的Firefox)