1)先安装wget
[root@localhost ~]# yum install -y wget
2)下载镜像源
查询国内镜像源,打开 阿里镜像站
下载CentOS 7的repo文件,进行更新镜像源
[root@localhost ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
或者
[root@localhost ~]# curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
3)清除缓存
[root@localhost ~]# yum clean all
4)生成新缓存
[root@localhost ~]# yum makecache
5)更新yum源
[root@localhost ~]# yum -y update
等待更新完毕即可。
评论 (0)