工做中大多數使用centos系統,當咱們安裝完centos系統的時候其實yum已經配置好了。咱們直接執行yum install 軟件包名稱 就能夠安裝好一個軟件包。他默認使用配置好的centos的源。但好多人習慣都使用下面的這二個源centos
一、這是中科大的源ide
cd /etc/yum.repos.d
mv CentOS-Base.repo CentOS-Base.repo.save //先重命名Centos自帶的yum源。
wget http://mirrors.ustc.edu.cn/centos/CentOS-Base.5.mirrors.repo O /etc/yum.repos.d/CentOS-Base.repo
yum makecache進程
二、這是sohu的源get
cd /etc/yum.repos.d
mv CentOS-Base.repo CentOS-Base.repo.save //先重命名Centos自帶的yum源。
wget http://mirrors.sohu.com/help/CentOS-Base-sohu.repo
yum makecacheit
PS:
有時候會出現錯誤,現象:
Loading "installonlyn" plugin
Existing lock /var/run/yum.pid: another copy is running. Aborting.class
這是由於yum在更新, 此時是kill不掉的該進程的, 正確的解決方法是讓它中止更新便可。
能夠直接輸入 rm -f /var/run/yum.pid
也能夠/etc/init.d/yum-updatesd stop
軟件