yum下載數度慢

qq_36445861發表於2020-10-02

引用:https://blog.csdn.net/xiaolong_4_2/article/details/81532517,

有時候yum下載時速度很慢,會不停的換mirrors,可能到了最後還會安裝失敗

這時候我們可以考慮清楚快取並更新

 

yum clean all
yum makecache

yum update

然後再重複安裝命令就可以了

1、備份

 

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

 

2、下載新的CentOS-Base.repo 到/etc/yum.repos.d/

 

CentOS 5


wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

 

CentOS 6


wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

 

CentOS 7


wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

 

3、之後執行yum makecache生成快取

相關文章