Linux更换yum源详解
一、Linux更换yum源的目的
Linux系统默认的yum源是国外的,下载时速度非常慢,或者有些软件无法下载。所以要更换yum源来加快软件下载速度。
二、Linux更换yum源
1、阿里云官方教程:
https://developer.aliyun.com/article/1245499?spm=a2c6h.14164896.0.0.61c810a3DS886D
2、手动更换yum源
#安装wget软件 如果没有安装wget命令
yum install -y wget
#备份旧的yum源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
#下载新的yum源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
#更新yum缓存
yum clean all
yum makecache
3、使用第三方工具更换yum源
常见的第三方工具有yum-config-manager和yum源管理器等。以下是使用yum-config-manager更换CentOS 7 yum源的示例:
#安装yum-utils
yum -y install yum-utils
#更改yum源
yum-config-manager --add-repo http://mirrors.aliyun.com/repo/Centos-7.repo
#更新yum缓存
yum makecache
三、常见的yum源选取
1、阿里云yum源
#CentOS 7 阿里云yum源
http://mirrors.aliyun.com/repo/Centos-7.repo
2、清华大学yum源
#CentOS 7 清华大学yum源
http://mirrors.tuna.tsinghua.edu.cn/help/centos/
3、163yum源
#CentOS 7 163yum源
http://mirrors.163.com/.help/CentOS7-Base-163.repo