美文网首页
CenterOS更新yum仓库

CenterOS更新yum仓库

作者: 会转圈儿的冷冷凉 | 来源:发表于2020-04-01 12:28 被阅读0次
    介绍

    yum和maven仓库一样,在下载时会从仓库配置的源进行下载,默认国外的yum源会有网速问题,因此我们需要将仓库源改成国内源

    操作步骤
    cd /etc/yum.repos.d
    

    备份老的仓库

    mv CentOS-Base.repo CentOS-Base.repo.backup
    

    下载阿里仓库

    curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    
    

    清除缓存

    yum clean all
    

    重新创建缓存

    yum makecache
    

    也可以下载别的源 比如163的 操作过程一样:

    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
    

    相关文章

      网友评论

          本文标题:CenterOS更新yum仓库

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