CentOS系统更换软件安装源 为阿里云
阿里云是最近新出的一个镜像源。得益于阿里云的高速发展,这么大的需求,肯定会推出自己的镜像源。 阿里云Linux安装镜像源地址:http://mirrors.aliyun.com/
第1步:备份你的原镜像文件,以免出错后可以恢复。(字母需要区分大小写)
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
第2步:查找系统的版本号,方便到阿里云上找对版本号下载
首先查找自己系统的版本号
Cd /etc
[root@docker03 etc]# cat os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
[root@docker03 etc]# cat redhat-release
CentOS Linux release 7.3.1611 (Core)
[root@docker03 etc]# rpm -q centos-release
centos-release-7-3.1611.el7.centos.x86_64
第3步下载新的CentOS-Base.repo 到/etc/yum.repos.d/
命令如下,根据不同版本号执行不同命令
CentOS 5 :wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
CentOS 6 :wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
CentOS 7 :wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
第4步更改CentOS-Media.repo使其为不生效:
enabled=0 表示禁用本地YUM源,使用网络源。
操作如下:
第5步:运行yum makecache生成缓存
清空yum缓存 :yum clean all
生存缓存 :yum makecache
开始更新系统以及内核 :yum upgrade
界面如下:
执行YUM UPDATE后
将先检查软件版本号,提示你是否要下载。如果选Y,则进行下载更新