Linux配置网络YUM源
Posted 书山有路勤为径
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux配置网络YUM源相关的知识,希望对你有一定的参考价值。
配置网络yum源 RHEL6.5
1 [[email protected] ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo 2 3 [[email protected] ~]# sed -i ‘s/$releasever/6.8/g‘ /etc/yum.repos.d/CentOS-Base.repo 4 5 [[email protected] ~]# yum clean all 6 7 [[email protected] ~]# yum list
配置网络yum源RHEL7.2
1 [[email protected] ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 2 3 [[email protected] ~]# sed -i ‘s/$releasever/7/g‘ /etc/yum.repos.d/CentOS-Base.repo 4 5 [[email protected] ~]# yum clean all 6 7 [[email protected] ~]# yum list
注:配置网络yum时,为了避免之前的yum文件相互冲突,建议删除之间的配置文件 可直接执行rm -rf /etc/yum.repos.d/* 在执行相应配置
以上是关于Linux配置网络YUM源的主要内容,如果未能解决你的问题,请参考以下文章