centos7是一个很好的中间系统,用来DD其它系统兼容性是非常的好,但已经停止支持,默认的元已经停止使用,想要更好的应用就必须换源。

备份当前 Yum 源

在更换 Yum 源之前,建议先备份当前的 Yum 源配置文件,以防万一。执行以下命令:

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

这将备份当前的 Yum 源配置文件为 CentOS-Base.repo.bak。

下载新的 Yum 源配置文件

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

如果wget没有安装的话,可以先下载http://mirrors.aliyun.com/repo/Centos-7.repo ,然后上传到/etc/yum.repos.d/目录下,重命名为CentOS-Base.repo即可

这里下载的是阿里云的centos7 yum源。

清除 Yum 缓存 & 生成新的缓存

yum clean all && yum makecache

好了,搞定