美文网首页
CentOS7 使用阿里更新源

CentOS7 使用阿里更新源

作者: blueline | 来源:发表于2018-01-30 12:11 被阅读0次

    不说废话了直接show脚本

    请先切换到root权限用户

    cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    wget -P /etc/yum.repos.d/ http://mirrors.aliyun.com/repo/epel-7.repo 
    yum clean all  
    yum makecache 
    

    上面的脚本直接执行就可以将更新源替换成阿里的了.


    脚本含义

    cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
    备份原始的更新源
    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    下载并设置更新源为aliyun
    wget -P /etc/yum.repos.d/ http://mirrors.aliyun.com/repo/epel-7.repo
    下载并设置EPEL源,此源中包含更多的软件
    yum clean all
    清理yum缓存
    yum makecache
    创建yum缓存

    相关文章

      网友评论

          本文标题:CentOS7 使用阿里更新源

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