CentOS 软件包不可用

CentOS 软件包不可用

我安装的是 CentOS 5.5,默认的 php 包是 5.1.6。我想安装 5.2.9,所以我添加了 /etc/yum.repo.d/CentOS-Testing.repo

[c5-testing]
name=CentOS-5 Testing
baseurl=http://dev.centos.org/centos/$releasever/testing/$basearch/
enabled=0
gpgcheck=1
gpgkey=http://dev.centos.org/centos/RPM-GPG-KEY-CentOS-testing

php-5.2.9-2.el5.centos.x86_64.rpm可用http://dev.centos.org/centos/5/testing/x86_64/RPMS/

所以我尝试了:yum 全部清理yum 搜索 php-5.2.9-2.el5.centos.x86_64.rpm --> 警告:未找到与 php-5.2.9-2.el5.centos.x86_64.rpm 匹配的内容

我做错了什么?谢谢你的帮助。

答案1

你已经告诉 yum忽略enabled=0通过在配置中设置来管理此存储库。您可以设置:

enabled=1

或者:

yum --enablerepo=c5-testing ...

相关内容