yum-在特定存储库中查找版本最低为“x”的软件包?

yum-在特定存储库中查找版本最低为“x”的软件包?

我已经在 CentOS 5 机器上配置了几个存储库。作为结果,命令:

yum search nagios

输出只是一片混乱——数千个重复的包。

为了让我的生活更轻松,我想例如搜索包纳吉奥斯仅在特定的 repo 中,例如 rpmforge 且最低版本为“3”。

我怎样才能实现这个目标?

答案1

# yum --disablerepo=* --enablerepo=rpmforge list avaiable 'nagios-3*'

更新时间:2012 年 7 月 10 日星期二 18:04:26 ICT

# yum --disablerepo=* --enablerepo=rpmforge list avaiable nagios | awk '$2 >= 3 { print $0 }'

相关内容