yum (Yellowdog Updater Modified)是一個集與尋找,安裝,更新和刪除程式的Linux軟體。它運行在RPM包相容的Linux發行版本上,如:RedHat,
Fedora, SUSE,
CentOS, Mandriva。
今天我在用CentOS 5.5的yum命令安裝的時候出現如下錯誤:
[root@malu2 ~]# yum install vim
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.hosting90.cz
* extras: mirror.hosting90.cz
* updates: mirror.hosting90.cz
Setting up Install Process
No package vim available.
Nothing to do
對於此錯誤,我一般習慣性先去更新一下yum倉庫:
#yum -y update
再次運行安裝,發現錯誤依舊,看來這種猜包名的方法不適用;所以接下來可以通過yum的尋找參數來列出vim相關的包名:
[root@malu2 yum.repos.d]# yum search vim
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.hosting90.cz
* extras: mirror.hosting90.cz
* updates: mirror.hosting90.cz
===================== Matched: vim ===================
vim-X11.x86_64 : The VIM version of the vi editor for the X Window System.
vim-common.x86_64 : The common files needed by any version of the VIM editor.
vim-enhanced.x86_64 : A version of the VIM editor which includes recent
: enhancements.
vim-minimal.x86_64 : A minimal version of the VIM editor.
通過查看,我們可以看到,yum列出了詳細的vim相關的包名,這樣就可以順利的安裝vim了:
#yum -y install vim-enhanced.x86_64
以上命令就能執行成功了。當然不僅僅vim安裝,其他程式比如mysql我們也同樣只要先進行yum尋找,再通過匹配詳細包名來進行安裝,就不會出現上述錯誤了