Linux-修改CentOS默认yum源
Posted guardwhy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux-修改CentOS默认yum源相关的知识,希望对你有一定的参考价值。
有时候CentOS默认的yum源不一定是国内镜像,导致yum在线安装及更新速度不是很理想。需要将yum源设置为国内镜像站点。
1.2.1 腾讯源
1.备份系统旧配置文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、进入yum源配置文件所在的文件夹
[root@linux ~]# cd /etc/yum.repos.d/
3、下载==mirrors.tencentyun.com==的yum源配置文件到上面那个文件夹内
CentOS5
wget -O /etc/yum.repos.d/CentOS-Base.repo http:/mirrors.tencentyun.com/repo/centos5_base.repo
CentOS6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.tencentyun.com/repo/centos6_base.repo
CentOS7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.tencentyun.com/repo/centos7_base.repo
CentOS8
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.tencentyun.com/repo/centos8_base.repo
更新缓存
yum clean all
yum makecache
yum -y update
1.2.2 阿里源
1.备份系统旧配置文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、进入yum源配置文件所在的文件夹
[root@linux ~]# cd /etc/yum.repos.d/
3、下载mirrors.aliyun.com的yum源配置文件到上面那个文件夹内
CentOS5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
CentOS6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
CentOS7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
CentOS8
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo
更新缓存
yum clean all
yum makecache
yum -y update
以上是关于Linux-修改CentOS默认yum源的主要内容,如果未能解决你的问题,请参考以下文章
Linux(CentOS7.1)修改默认yum源为国内的阿里云yum源