CentOS 7 配置阿里yum源 并安装Chrome浏览器

cd  /etc/yum.repos.d/ #打开centos的yum文件夹
yum -y install wget #安装wget工具
wget  http://mirrors.aliyun.com/repo/Centos-7.repo #用wget下载repo文件
mv  CentOS-Base.repo CentOS-Base.repo.bak #备份系统原来的repo文件
mv Centos-7.repo CentOS-Base.repo #替换系统原来的repo文件

执行以下命令

yum clean all

yum makecache

yum update

依次执行上述三条命令即配置完毕。

安装Chrome浏览器

yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

完成后在Applications中的Internet中可以找到谷歌浏览器

 

你可能感兴趣的:(linux)