centos8将yum源更换为国内(阿里云)源
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos8将yum源更换为国内(阿里云)源相关的知识,希望对你有一定的参考价值。
参考技术Ayum install 失败
建议先进行备份:
更换 CentOS-Base.repo 为 阿里云的 CentOS-Base.repo
更新yum缓存
若 yum makecache 出现以下错误,则需更换 epel.repo
更换 epel.repo 为 阿里云的 epel.repo
注:更新源/镜像后,记得更新yum缓存~
若 yum makecache 再次出现以下错误,则需更换 epel-modular.repo
更换 epel-modular.repo 为 阿里云的 epel-modular.repo
由于笔者在 https://mirrors.aliyun.com/repo 上未找到epel-modular.repo,因此手动将epel-modular.repo中的baseurl替换为aliyun(与epel.repo的相同)。如下:注释的 baseurl 是旧的 url,当前 epel-modular.repo 使用的 baseurl 同 epel.repo 中的 baseurl 。
centos下将系统预置yum源更换为阿里云源
参考:http://mirrors.aliyun.com/help/centos?spm=5176.bbsr150321.0.0.d6ykiD
步骤1:备份/etc/yum.repos.d/下的CentOS-Base.repo为CentOS-Base.repo.backup 并更换为阿里云源
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
更换后效果:
步骤2:运行yum makecache生成缓存
附:删除yum缓存可用
rm -rf /var/cache/yum/*
或
yum clean all
至此,阿里云yum源更换完成,希望对你有帮助~
以上是关于centos8将yum源更换为国内(阿里云)源的主要内容,如果未能解决你的问题,请参考以下文章