CentOS7更換國內源
阿新 • • 發佈:2018-12-13
前言
CentOS 有個很方便的軟體安裝工具yum,但是預設安裝完CentOS,系統裡使用的是國外的CentOS更新源,這就造成了我們使用預設更新源安裝或者更新軟體時速度很慢的問題,甚至更新失敗。
為了使用yum工具能快速的安裝更新軟體,我們需要將預設的yum更新源配置為國內的更新源。
具體操作
1、備份(針對所有CentOS可用,備份檔案在當前路徑下)
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、下載新的CentOS-Base.repo 到/etc/yum.repos.d/
阿里雲源
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
網易雲源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
3、之後執行yum makecache生成快取
yum makecache