我如何列出某个软件包所属的 yum 仓库?

我如何列出某个软件包所属的 yum 仓库?

当我运行该命令时yum erase $(rpm -qa |grep gnome),我得到以下输出:

========================================================================================================================
 Package                          Arch        Version               Repository                                     Size
========================================================================================================================
Removing:
 gnome-backgrounds                noarch      2.28.0-2.el6          @anaconda-CentOS-201303020151.x86_64/6.4      9.5 M
 gnome-bluetooth-libs             x86_64      2.28.6-8.el6          @anaconda-CentOS-201303020151.x86_64/6.4      165 k
 gnome-doc-utils-stylesheets      noarch      0.18.1-1.el6          @anaconda-CentOS-201303020151.x86_64/6.4      1.3 M

我想要做的是列出系统上所有软件包的“存储库”列中的所有项目和/或查询“@anaconda-CentOS-201303020151.x86_64/6.4”存储库中的所有软件包。我只能看到 yum 中的任何“repo”选项列出 base、epel 等,而yum repolist all根本没有提到“@anaconda-CentOS-201303020151.x86_64/6.4”。那么我如何查看它以及它里面有什么?

答案1

yum list installed | grep -F "anaconda-CentOS-201303020151.x86_64/6.4"

相关内容