1. 程式人生 > >Centos替換默認源

Centos替換默認源

install OS 查看 選擇 替換 make wget .html 幫助文檔

將默認的國外源替換為國內的網易的源

參考幫助文檔:http://mirrors.163.com/.help/centos.html

查看本機版本:cat /etc/redhat-release

先安裝wget:yum install wget

默認源的備份與網易源的安裝:

備份:
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
切換目錄:
cd /etc/yum.repos.d/
 
選擇版本下載安裝(我的是6版本)
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
 
再執行下面兩個命令
yum clean all
yum makecache

  

Centos替換默認源