原因
centos停止更新,如果需要更新 CentOS,需要将镜像从 mirror.centos.org 更改为 vault.centos.org
解决
# 切换目录
cd /etc/yum.repos.d/
# 替换内容
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
# 生成缓存
yum makecache
# 更新源列表
yum update -y
然后就可以安装其他软件了,如下:
yum install -y vim