配置网络yum源
Posted king_hb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置网络yum源相关的知识,希望对你有一定的参考价值。
有的时候服务器需要下载一些软件,是本地yum源没有的,这时候需要配置网络yum源
#cd /etc/yum.repos.d/
把这个目录下的配置文件备份,改名;或者是把文件里边的enabled=1的改为enabled=0;
# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
# sed -i ‘s/$releasever/6/g‘ /etc/yum.repos.d/CentOS-Base.repo
# yum clean all
# yum list
以上是配置RHEL6.5的,下边是配置 RHEL7.2
# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
# sed -i ‘s/$releasever/7/g‘ /etc/yum.repos.d/CentOS-Base.repo
# yum clean all
# yum list
阿里云的网络yum源一般够用了;你可以用其他的,url换一下而已,还有搜狐的 http://mirrors.sohu.com 中科大 http://centos.ustc.edu.cn
以上是关于配置网络yum源的主要内容,如果未能解决你的问题,请参考以下文章