原文链接::https://www.cnblogs.com/ltlinux/p/14107377.html
centos6 yum源不可用问题解决
2020年11月30日 centos6各大开源镜像站已经停止维护了 但是阿里源还是可以用的 因为他的centos-vault仓库里放了之前版本的centos的包
只需要在centos命令行界面下执行一下几条命令
sed
-i ``"s|enabled=1|enabled=0|g"
/etc/yum/pluginconf``.d``/fastestmirror``.conf
mv
/etc/yum``.repos.d``/CentOS-Base``.repo ``/etc/yum``.repos.d``/CentOS-Base``.repo.backup
curl -o ``/etc/yum``.repos.d``/CentOS-Base``.repo https:``//www``.xmpan.com``/Centos-6-Vault-Aliyun``.repo
yum clean all
yum makecache
|
网友评论