在CentOS 7中更换yum源,可以按照以下步骤操作:
1.备份原先的yum源配置文件(可选):
sudo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2.下载新的yum源配置文件:
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
上述链接是阿里云提供的CentOS 7的yum源,你也可以根据需要选择其他镜像源。
3.执行以下命令清空并重建yum缓存:
sudo yum clean all
sudo yum makecache
至此,已成功更换CentOS 7的yum源。现在可以使用yum命令进行软件包的安装和更新了。