1. 备份源文件

bash
  • 01
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

2. 查看CentOS版本号

bash
  • 01
cat /etc/redhat-release

3. 在阿里云镜像库找到符合自己centos版本的镜像源

bash
  • 01
  • 02
  • 03
  • 04
  • 05
  • 06
  • 07
  • 08
# CentOS 5 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo # CentOS 6 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo # CentOS 7 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

4. 重新加载

bash
  • 01
  • 02
yum clean all yum makecache