写这篇文章,主要是为了收集和总结最近更换镜像源的经验,近期,centos停服的影响,导致很多厂商关闭了自己的镜像源,更换镜像源又是一个简单又容易出错的问题,故写下此篇,作为记录。
若有错误之处,望指出,感谢
centos8镜像源更换
第一步:先备份自己的镜像源文件
shell
rename '.repo' '.repo.bak' /etc/yum.repos.d/*.repo
第二步:拉取镜像源
shell
wget https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo -O /etc/yum.repos.d/Centos-vault-8.5.2111.repo
wget https://mirrors.aliyun.com/repo/epel-archive-8.repo -O /etc/yum.repos.d/epel-archive-8.repo
第三步:将镜像url更换为mirrors.cloud.aliyuncs.com
shell
sed -i 's/mirrors.cloud.aliyuncs.com/url_tmp/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo && sed -i 's/mirrors.aliyun.com/mirrors.cloud.aliyuncs.com/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo && sed -i 's/url_tmp/mirrors.aliyun.com/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo
sed -i 's/mirrors.aliyun.com/mirrors.cloud.aliyuncs.com/g' /etc/yum.repos.d/epel-archive-8.repo
第四步:清除缓存,并更新本地缓存
shell
yum clean all && yum makecache
关于yum指令无法正常使用的解决办法【转载】
在这里,也遇到一个情况,使用yum指令时,老是报错,显示yum的镜像源404,遇到这种情况,索性直接重装yum指令了,
下面是详细指令
shell
cd /etc/yum.repos.d #此目录存放yum源的文件
1.首先备份旧文件
mv CentOS-Base.repo CentOS-Base.repo.bak
2.下载阿里源的文件【如果提示无法解析阿里云网址,请开通网络模块,参考:https://www.cnblogs.com/chenwolong/p/15904732.html】
wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3.安装epel repo源
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
4.清理缓存,重新生成缓存
yum clean all
5、生成yum 包缓存
yum makecache fast
6、查看阿里云yum 安装包
yum list