CentOS 7 修改默认 yum 源

一、修改CentOS默认yum源为mirrors.aliyun.com

1、首先备份系统自带的yum源配置文件

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

 2、进入yum配置文件所在文件夹

[root@localhost ~]# cd /etc/yum.repos.d/

3、下载aliyun的yum源配置文件到:

[root@localhost ~]# cd /etc/yum.repos.d/

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

CentOS 7:

# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

CentOS 6:

# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

CentOS 5:

# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

二、修改CentOS默认yum源为mirrors.163.com

1、首先备份系统自带的yum源配置文件     /etc/yum.repos.d/CentOS-Base.repo

# mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

2、进入yum源配置文件所在的文件夹

# cd /etc/yum.repos.d/

3、下载163的yum源配置文件到/etc/yum.repos.d/

CentOS 7:

# wget http://mirrors.163.com/.help/CentOS7-Base-163.repo

CentOS 6:

# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo

CentOS 5:

# wget http://mirrors.163.com/.help/CentOS5-Base-163.repo

4、运行yum makecache生成缓存

# yum makecache

5、更新系统

# yum -y update

你可能感兴趣的:(centos,linux,服务器)