美文网首页
【CentOS】解决CentOS 7停止更新支持后yum源失效问

【CentOS】解决CentOS 7停止更新支持后yum源失效问

作者: Bogon | 来源:发表于2024-09-25 11:50 被阅读0次

    CentOS7已于2024年6月30日正式停服,停服后默认的yum源已全部404无法使用,对于还在使用CentOS7系统的用户来说,无疑是一个很大的影响。

    对于还在使用CentOS7系统的用户,应趁早做出替代化的选择,CentOS停服后替代的系统见:https://blog.whsir.com/post-7489.html

    通过下载本文配置整理好的CentOS7系统源,可以有效解决默认源404异常问题,注意:本文仅适用于Centos7系统,请勿将本文用于其它版本系统。

    1、备份旧的yum源

    在/etc/yum.repos.d/目录下创建一个bak目录,再将/etc/yum.repos.d/中的.repo源配置文件移动至bak目录中,当然如果您确定/etc/yum.repos.d/目录中的源配置没用,也可以将/etc/yum.repos.d/目录清空(rm -f /etc/yum.repos.d/*)。

    mkdir -p /etc/yum.repos.d/bak
    mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/bak/
    

    2、配置Centos7源(x86_64架构)

    吴昊在这里整理了多个Centos7国内镜像的源,任选其一即可,在Centos7停服后,默认的源已从centos改成了centos-vault,这里所有的源都是二次配置修改过的。

    提供curl命令下载方式,以及wget命令下载方式,任选其一。

    阿里云源(curl方式)
    curl -o /etc/yum.repos.d/Centos7-aliyun.repo https://mirrors.wlnmp.com/centos/Centos7-aliyun-x86_64.repo
    阿里云源(wget方式)
    wget https://mirrors.wlnmp.com/centos/Centos7-aliyun-x86_64.repo -P /etc/yum.repos.d/

    网易源(curl方式)
    curl -o /etc/yum.repos.d/Centos7-163.repo https://mirrors.wlnmp.com/centos/Centos7-163-x86_64.repo
    网易源(wget方式)
    wget https://mirrors.wlnmp.com/centos/Centos7-163-x86_64.repo -P /etc/yum.repos.d/

    腾讯源(curl方式)
    curl -o /etc/yum.repos.d/Centos7-tencent.repo https://mirrors.wlnmp.com/centos/Centos7-tencent-x86_64.repo
    腾讯源(wget方式)
    wget https://mirrors.wlnmp.com/centos/Centos7-tencent-x86_64.repo -P /etc/yum.repos.d/

    参考

    解决CentOS 7停止更新支持后yum源失效
    https://blog.cccyun.cn/post-530.html

    CentOS7停服后yum源配置指南
    https://zhuanlan.zhihu.com/p/713395620

    相关文章

      网友评论

          本文标题:【CentOS】解决CentOS 7停止更新支持后yum源失效问

          本文链接:https://www.haomeiwen.com/subject/pvlcrjtx.html