目的:修改CentOS默认的yum源为mirrors.aliyun.com的镜像源
1.备份自带的yum源配置文件CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak
2.下载ailiyun的yum源配置文件
两种方法:
(1)通过ftp工具(xftp,FileZilla,MobaX等)上传至Linux环境
下载地址:http://mirrors.aliyun.com/repo/Centos-7.repo
(2)使用wget命令下载
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3.运行yum makecache生成缓存
yum makecache
4.更新系统 查看信息
yum -y update