CentOS6 阿里云等yum源失效处理
原因:阿里源、清华源已不再维护 CentOS 6 的 Yum 源镜像
访问清华源:https://mirrors.tuna.tsinghua.edu.cn/centos/6/
readme里明确说明不再维护
The whole CentOS 6 is dead and shouldn’t be used anywhere at all
解决方法
1、备份之前的源
cd /etc/yum.repos.d/
mv CentOS-Base.repo CentOS-Base.repo.bak
mv epel.repo epel.repo.bak
2、下载新的源
wget http://github.itzmx.com/1265578519/mirrors/master/CentOS/CentOS6-Base-itzmx.repo -O /etc/yum.repos.d/CentOS-Base.repo
wget http://github.itzmx.com/1265578519/mirrors/master/EPEL/epel.repo -O /etc/yum.repos.d/epel.repo
3、重新生成缓存
yum clean all
yum makecache
此时已完成
4、测试
yum install -y lrzsz