修改yum源镜像为国内镜像

官网下载的CentOS的yum源不是国内镜像,这样会导致yum在线安装及更新速度很慢。这时候可以将yum源设置为国内镜像站点,提升速度。

1.进入yum源配置目录

cd /etc/yum.repos.d/

2.备份服务器原有的yum源文件,以防出错用于恢复

mv CentOS-Base.repo CentOS-Base.repo.bak

3.选择对应的CentOS版本,下载国内网易或阿里的yum源镜像
网易:

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS6-Base-163.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS5-Base-163.repo

阿里:

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

4.生成yum源缓存

yum makecache

5.更新yum源即可

yum -y update

你可能感兴趣的:(Linux)