Linux修改yum源爲阿里雲、網易、中國科技大學

說明

Linux系統默認yum源速度慢,最好修改爲國內的yum源,國內阿里、網易、中國科技大學等都是非常不錯的,更新快,速度快,選擇其一就好。下面說明如何使用。

 

1.阿里

 

1.1備份當前的yum源

mv /etc/yum.repos.d /etc/yum.repos.d.backup

 

1.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
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo 
 

CentOS 6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
或者
curl -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
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

1.3 清空並生成緩存

yum clean all

yum makecache

 

備註

yum 會把下載的軟件包和header存儲在cache中(默認路徑/var/cache/yum/),而不自動刪除。如果覺得佔用磁盤空間,可以使用yum clean指令進行清除,更精確 的用法是yum clean headers清除header,yum clean packages清除下載的rpm包,yum clean all全部清除。

 

2.網易

2.1備份當前的yum源

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

 

2.2 下載對應版本repo文件, 放入/etc/yum.repos.d/

http://mirrors.163.com/.help/CentOS7-Base-163.repo
 
http://mirrors.163.com/.help/CentOS6-Base-163.repo
 
http://mirrors.163.com/.help/CentOS5-Base-163.repo

 

2.3運行以下命令生成緩存

yum clean all

yum makecache

 

3. 中科大

 

3.1首先備份CentOS-Base.repo

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

 

3.2下載對應版本的CentOS-Base.repo, 放入/etc/yum.repos.d/

Centos5
https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos?codeblock=1

Centos6
https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos?codeblock=2
 
Centos7
https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos?codeblock=3

 

3.3運行以下命令生成緩存

yum clean all

yum makecache

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章