yum修改为阿里源
1.安装wget
yum install -y wget
2.备份与下载源
cd /etc/yum.repos.d
mv -f CentOS-Base.repo CentOS-Base.repo.backup
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
mv epel.repo epel.repo.backup
# 有些系统可能没有epel,所以就直接下载就行了
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
3.清理缓存包
yum clean all
4.生成yum源缓存
yum makecache
5.更新yum源
yum -y update
更新效果如下:
等待更新完成即可使用了!