美文网首页
centos 7 常用yum源配置

centos 7 常用yum源配置

作者: 程序员的自我修养 | 来源:发表于2020-05-28 14:58 被阅读0次

    什么是yum,什么是yum源,常见的yum源有哪些?

    yum是centos下更新、管理软件的命令,也有相应的图像界面版本;

    yum源是yum命令去哪里取安装包的地图;

    常见的yum源:网易、阿里云、epel等;

    yum、rpm、repo什么关系?

    yum命令查询repo上配置的地址去取相应的rpm包进行安装;

    配置下centos的DNS

    一个国内,一个国外

    vi  /etc/resolv.conf

    nameserver 114.114.114.114

    nameserver 8.8.8.8

    备份下原来的yum源

    cd /etc/yum.repos.d/

    mv CentOS-Base.repo CentOS-Base.repo_bak

    网易yum源:

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

    yum clean all

    yum makecache

    阿里云yum源:

    wget -O /etc/yum.repos.d/CentOS-Base.repohttp://mirrors.aliyun.com/repo/Centos-7.repo

    yum clean all

    yum makecache

    epel源

    yum -y install epel-release

    yum clean all

    yum makecache

    相关文章

      网友评论

          本文标题:centos 7 常用yum源配置

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