CentOS 更換yum源為阿里源
阿新 • • 發佈:2018-11-09
- 使用vim檢視yum源:
[[email protected] ~]# vim /etc/yum.repos.d/CentOS-Base.repo
- 本文以CentOS 7 為例,下載阿里雲yum源到/etc/yum.repos.d資料夾下:
進入/etc/yum.repos.d資料夾:
使用wget下載阿里雲yum源至(如果沒有wget,需要安裝,命令:yum -y install wget):[[email protected] ~]# cd /etc/yum.repos.d
使用vim檢視阿里雲yum源:[[email protected] yum.repos.d]# wget http://mirrors.aliyun.com/repo/Centos-7.repo
[[email protected] yum.repos.d]# vim Centos-7.repo
如果是其他作業系統,可根據需選擇連結下載:
網址:http://mirrors.aliyun.com/repo/ - 備份原有yum源:
[[email protected] yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.bak
- 複製阿里雲yum源,名稱為預設yum名稱:
[[email protected] yum.repos.d]# cp Centos-7.repo CentOS-Base.repo
- 清理快取:
[[email protected] yum.repos.d]# yum clean all
- 重新生成快取 :
[[email protected] yum.repos.d]# yum makecache
- 再次使用vim檢視yum源:
[[email protected] ~]# vim /etc/yum.repos.d/CentOS-Base.repo