Linux更换yum源

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux更换yum源相关的知识,希望对你有一定的参考价值。

参考技术A 有时候CentOS默认的yum源不一定是国内镜像,导致yum在线安装及更新速度不是很理想。这时候需要将yum源设置为国内镜像站点。国内主要开源的开源镜像站点应该是网易和阿里云了。

[wujiahao@47.98.32.222 ~]# mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

[wujiahao@47.98.32.222 ~]]# cd /etc/yum.repos.d/

[wujiahao@47.98.32.222 yum.repos.d]# wget http://mirrors.163.com/.help/CentOS7-Base-163.repo

[wujiahao@47.98.32.222 yum.repos.d]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo

[wujiahao@47.98.32.222 yum.repos.d]# wget http://mirrors.163.com/.help/CentOS5-Base-163.repo

[wujiahao@47.98.32.222 yum.repos.d]# yum makecache

[wujiahao@47.98.32.222 yum.repos.d]# yum -y update

[wujiahao@47.98.32.222 ~]# mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

[wujiahao@47.98.32.222 ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

[wujiahao@47.98.32.222 ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

[wujiahao@47.98.32.222 ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

[wujiahao@47.98.32.222 ~]# yum makecache

[wujiahao@47.98.32.222 ~]# yum -y update

linux 更换yum源

1.备份原来的源

  sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bk

2.下载阿里的源

  cd /etc/yum.repos.d

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

3.更改阿里的源为默认的源

  sudo mv CentOS-7.repo CentOS-Base.repo

4.更新本地的源缓存

  全部清除 

  sudo yum clean all 

  更新列表 

  sudo yum list

  缓存yum包信息到本机,提高搜索速度 

   sudo yum makecache

国内yum源

阿里yum源:http://mirrors.aliyun.com/repo/

163(网易)yum源: http://mirrors.163.com/.help/

中科大的Linux安装镜像源:http://centos.ustc.edu.cn/

搜狐的Linux安装镜像源:http://mirrors.sohu.com/

北京首都在线科技:http://mirrors.yun-idc.com/

以上是关于Linux更换yum源的主要内容,如果未能解决你的问题,请参考以下文章

更换Linux(CentOS) yum源

linux系统更换网络YUM源

Linux之更换yum源

linux系统更换yum源

linux 更换yum源

linux自学之开始centos学习,更换yum源