第一步:安装 wget 下载工具:
# yum install -y wget
第二步:备份你的原镜像文件,以免出错后可以恢复
# mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
第三步:下载新的CentOS-Base.repo 到/etc/yum.repos.d/,预设版本:CentOS 7
# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
第四步:运行yum makecache生成缓存
# yum clean all
# yum makecache
第五步:更新系统【可选】
# yum update【目前采取的是这一种,系统在启动界面,显示的确更新了内核,目前采用最新的内核】
不更新内核【另一种更新方式】
# yum --exclude=kernel* update
第六步:重启系统
# 更新完成后重启一下服务器
reboot