CentOS安装chrome-浏览器

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

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

然后在vim编辑器中输入

i

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

添加软件源代码之后,在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
原文地址:https://www.cnblogs.com/AmatVictorialCuram/p/3886415.html