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
版权声明:本文标题:Linux centos安装Firefox、Chrome浏览器 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1727388821h1113051.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论