红联Linux门户
Linux帮助

CentOS安装chrome-浏览器

发布时间:2015-08-28 10:55:01来源:linux网站作者:ToBeC渣渣攻城狮

首先,在CentOS中安装软件,通过yum命令来安装软件,就要在系统中的软件源中添加软件源节点,即在目录./etc/yum.repos.d/下的CentOS-Base.repo文件中做修改:在控制台Console中进入超级用户su然后采用命令

vim /etc/yum.repos.d/CentOS-Base.repo

然后在vim编辑器中输入

i

进入编辑状态,这时将光标移动到末尾,添加软件源的代码。

CentOS安装chrome-浏览器

添加软件源代码之后,在vim编辑器中按下esc进入到命令模式,依次输入

:w
:q

将所做修改保存并退出vim返回到console控制台。


CentOS 6.x安装chrome浏览器
vim /etc/yum.repos.d/CentOS-Base.repo
根据你的系统增加一个节点

32bit系统

[google]
name=Google - i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

64bit系统

[google64]
name=Google - x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

然后运行命令:

yum install google-chrome-stable

安装稳定版本:
yum install google-chrome-stable
安装测试版本:
yum install google-chrome-beta
安装不稳定版本:
yum install google-chrome-beta


ubuntu15.04安装chrome:http://www.linuxdiyf.com/linux/13413.html

Fedora22(Gnome桌面)安装Chrome:http://www.linuxdiyf.com/linux/13134.html

ubuntu15.04安装Chrome浏览器:http://www.linuxdiyf.com/linux/12706.html

Fedora:快速便捷地安装Chrome:http://www.linuxdiyf.com/linux/11833.html

CentOS无法安装Chrome浏览器替代方案:http://www.linuxdiyf.com/linux/2611.html