当前位置: 代码迷 >> 综合 >> wget 更换 yum 源
  详细解决方案

wget 更换 yum 源

热度:10   发布时间:2023-12-06 21:16:22.0

查看是否安装 wget

rpm -qa | grep wget

如果没有安装

yum install -y wget

换源

#关闭进程
pkill -9 yum
#备份源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
#wget 通过http安装新的阿里源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
#清除缓存
yum clean allyum makecacheyum update