あなたは言っていませんが、どのバージョンを取得していて、どのバージョンを期待していますか?
どのリポジトリがありますか?
次のコマンドを使用して、システムがクエリを実行するように構成されているリポジトリを確認できます。
$ yum repolist | expand
Loaded plugins: fastestmirror, priorities, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: centos.mirror.constant.com
* epel: mirror.steadfast.net
* extras: mirror.symnds.com
* updates: bay.uchicago.edu
77 packages excluded due to repository priority protections
repo id repo name status
base CentOS-6 - Base 6,297+70
epel Extra Packages for Enterprise Linux 6 - x86_64 10,246
extras CentOS-6 - Extras 7+7
updates CentOS-6 - Updates 314
repolist: 16,864
パッケージ情報
インストールされているかどうかに関係なく、任意のパッケージをクエリできますyum info <pkg>
。
$ yum info cmake
Loaded plugins: fastestmirror, priorities, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: centos.mirror.constant.com
* epel: mirror.steadfast.net
* extras: mirror.symnds.com
* updates: bay.uchicago.edu
77 packages excluded due to repository priority protections
Installed Packages
Name : cmake
Arch : x86_64
Version : 2.6.4
Release : 5.el6
Size : 18 M
Repo : installed
From repo : base
Summary : Cross-platform make system
URL : http://www.cmake.org
License : BSD
Description : CMake is used to control the software compilation process using simple
: platform and compiler independent configuration files. CMake generates
: native makefiles and workspaces that can be used in the compiler
: environment of your choice. CMake is quite sophisticated: it is possible
: to support complex environments requiring system configuration, pre-processor
: generation, code generation, and template instantiation.
パッケージのURL
repoquery
コマンドを使用して、RPMがダウンロードされている場所を確認できます。
$ repoquery --location cmake
http://centos.mirrors.hoobly.com/6.5/os/x86_64/Packages/cmake-2.6.4-5.el6.x86_64.rpm
これはこのリポジトリの一部です:
$ repoquery -i cmake | grep Repos
Repository : base
したがって、これは、このパッケージを提供するCentOSディストリビューションのベースリポジトリです。
他のどのリポジトリにそれがありますか?
pkgs.orgを使用して、特定のパッケージ(少なくともほとんどの主要なリポジトリ)が含まれているリポジトリを照会できます。
このリストによると、EPELリポジトリには最新バージョンが事前にビルドされています。このパッケージのバージョンは次のとおりです:cmake 28-2.8.11.2-1。
yum
構成を確認します/etc/yum.repos.d/*
。インストールされているバージョンをロックしている何かがありますか?