centos修改国内yum源

# 更换yum官方源

yum install -y wget # 下载wget工具
cd /etc/yum.repos.d/ # 进入yum源配置文件所在文件夹
mv CentOS-Base.repo CentOS-Base.repo_bak # 备份本地yum源
# 获取国内yum源(阿里、163二选一)
wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
# wget -O CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
yum clean all # 清理yum缓存 
yum makecache  # 重建缓存 
yum -y update  # 升级Linux系统
1
2
3
4
5
6
7
8
9

# 增加epel源(可选)

yum install epel-release #  安装epel源
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo #  修改为阿里的epel源
yum install -y yum-priorities #  安装yum源优先级管理工具
#  添加优先级(数字越小优先级越高)
vim /etc/yum.repo.d/epel.repo
priority=88
#  添加优先级(这个数要小于epel里的88即可)
vim /etc/yum.repo.d/Centos-7.repo
priority=6

# 开启yum源优先级功能
vim /etc/yum/pluginconf.d/priorities.conf
#  确保文件内容包含如下:
[main]
enabled=1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
上次更新: 2022/04/15, 05:41:32
×