本文共 1422 字,大约阅读时间需要 4 分钟。
阿里云是最近新出的一个镜像源。得益于阿里云的高速发展,这么大的需求,肯定会推出自己的镜像源。 阿里云Linux安装镜像源地址:http://mirrors.aliyun.com/
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
首先查找自己系统的版本号
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
命令如下,根据不同版本号执行不同命令
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
enabled=0 表示禁用本地YUM源,使用网络源。
操作如下:
清空yum缓存 :yum clean all
生存缓存 :yum makecache 开始更新系统以及内核 :yum upgrade界面如下:
执行YUM UPDATE后
将先检查软件版本号,提示你是否要下载。如果选Y,则进行下载更新