更新centos自带yum源为阿里repo源

一、为什么更新

由于默认yum源基本都是在国外譬如Centos7的默认Centos-Base.repo主要下载更新都是http://mirrorlist.centos.org类网址之下,国内访问速度比较慢,尤其下载安装一些比较大的安装包时候,速度会非常慢。不如更新为国内的比较好的yum源,如aliyun源,起到类似于CDN加速的作用,安装下载会比较快。

1.备份原有镜像源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

2.下载阿里云的镜像源
wget下载Centos-7.repo到本地/etc/yum.repos.d/目录下,并命名为Centos-Base.repo
wget -O /etc/yum.repos.d/Centos-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

3.重新设置缓存
yum clean all
清除缓存
yum makecache 或者 yum repolist
重新生成缓存,加速访问和下载

你可能感兴趣的:(linux)