美文网首页
Centos7 yum源修改

Centos7 yum源修改

作者: 连理枝__ | 来源:发表于2018-08-26 14:18 被阅读0次

    1. 备份本地yum源

    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak

    2.获取阿里yum源配置文件

    wget http://mirrors.aliyun.com/repo/Centos-7.repo

    3.更新cache

    yum makecache

    4.查看

    yum -y update

    5.全过程

     mv /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
    
    yum makecache
    
    yum -y update 
    

    相关文章

      网友评论

          本文标题:Centos7 yum源修改

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