centos7 换源
安装wget
yum install wget -y
安装nano编辑器
yum install nano -y
目标是更换CentOS-Base.repo文件,先备份一下
cd /etc/yum.repos.d/
mv CentOS-Base.repo CentOS-Base.repo.bak
通过wget工具,从阿里云获取配置文件,根据自己centos的版本选择即可
命令 :
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo
配置文件如图
刚才有说到yum的本地缓存,所以需要先清空一波本地的缓存,再用阿里云的替换掉。
命令:
yum clean all
制作阿里云的缓存。命令:
yum makecache
更新一下软件
yum update