RedHat8更换CentOS阿里云镜像源

1.备份

mv /etc/yum.repos.d/redhat.repo /etc/yum.repos.d/redhat.repo.bak

2.下载新的CentOS-Base.repo 到 /etc/yum.repos.d/ (这里用的CentOS 8.0)

wget -O /etc/yum.repos.d/redhat.repo http://mirrors.aliyun.com/repo/Centos-8.repo
#或者
curl -o /etc/yum.repos.d/redhat.repo http://mirrors.aliyun.com/repo/Centos-8.repo

3、清除缓存,生成缓存

# 清除缓存
yum clean all
# 生存缓存
yum makecache

你可能感兴趣的:(Linux,yum,redhat,centos,缓存)