Yum(全稱 Yellow Dog Updater)是一個在 Fedora 和 RedHat 以及 CentOS 中的 Shell 前端軟件包管理器。基於 RPM 包管理,可以從指定的服務器自動下載RPM包而且安裝,能夠自動處理依賴性關係,而且一次安裝全部依賴的軟件包.前端
yum install foo-x.x.x.rpm
yum remove foo-x.x.x.rpm
yum update foo
yum info foo
yum check-update
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
根據本身的系統選擇合適的 yum源centos
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
yum clean all yum makecache
注意:服務器
使用 yum update 會升級系統內核,若是不想升級系統內核能夠使用 yum upgrade !!!curl