admin 管理员组

文章数量: 887021

1、安装Firefox浏览器

centos7有自带的Firefox浏览器,不过版本一般比较旧,有很多兼容性问题,需要先卸载掉

yum remove firefox

安装新版本的Firefox:

yum -y install firefox

安装成功后查看版本:firefox -version

输入firefox就可以直接启动Firefox浏览器,如果有安装桌面版centos,直接在应用程序点浏览器图标打开就行

2、安装Chrome浏览器

确认是否已经安装Chrome浏览器

查看浏览器版本:

google-chrome  -version

下面的截图是楼主已经安装了最新版本的Chrome后才截图的

配置yum的chrome源

 cd  /etc/yum.repos.d
 vi google-chrome.repo

添加以下代码:

[google-chrome]
name=google-chrome
baseurl=http://dl.google/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google/linux/linux_signing_key.pub

下载并安装chrome浏览器

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

安装完发现点击chrome浏览器图标转了几圈就没反应了

用命令启动:google-chrome,发现以下报错信息:

意思大概是用root启动需要加上--no-sandbox才可以

所以可以用以下命令启动:/usr/bin/google-chrome-stable --no-sandbox

但每次启动都要输入命令太麻烦,进入chrome安装目录:/usr/share/applications/

找到chrome浏览器图标,右击--》属性,在启动命令这一行加上:--no-sandbox

并复制图标到桌面,以后在桌面双击打开就行

本文标签: 浏览器 centos Linux chrome Firefox