Linux的yum list all
时间: 2023-09-30 19:02:04 浏览: 175
`yum list all` 命令可以列出所有可用的软件包,包括已安装和未安装的软件包。如果您是以root用户身份运行该命令,则还将列出所有可用的库和存储库。这是列出所有软件包及其版本、发布日期和描述的基本命令。
以下是在Linux系统上使用yum list all命令的示例输出:
```
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
Installed Packages
GeoIP.x86_64 1.5.0-14.el7 @anaconda/7.2
NetworkManager.x86_64 1:1.18.8-1.el7_9 @updates
NetworkManager-libnm.x86_64 1:1.18.8-1.el7_9 @updates
PackageKit.x86_64 1.1.12-5.el7_9.1 @updates
PackageKit-glib.x86_64 1.1.12-5.el7_9.1 @updates
abrt.x86_64 2.1.11-52.el7.centos.2 @base
abrt-addon-ccpp.x86_64 2.1.11-52.el7.centos.2 @base
abrt-addon-kerneloops.x86_64 2.1.11-52.el7.centos.2 @base
abrt-addon-python.x86_64 2.1.11-52.el7.centos.2 @base
abrt-addon-vmcore.x86_64 2.1.11-52.el7.centos.2 @base
abrt-cli.x86_64 2.1.11-52.el7.centos.2 @base
abrt-console-notification.x86_64 2.1.11-52.el7.centos.2 @base
abrt-dbus.x86_64 2.1.11-52.el7.centos.2 @base
abrt-desktop.x86_64 2.1.11-52.el7.centos.2 @base
abrt-gui.x86_64 2.1.11-52.el7.centos.2 @base
abrt-gui-libs.x86_64 2.1.11-52.el7.centos.2 @base
abrt-libs.x86_64 2.1.11-52.el7.centos.2 @base
abrt-plugin-bodhi.x86_64 2.1.11-52.el7.centos.2 @base
abrt-plugin-kerneloops.x86_64 2.1.11-52.el7.centos.2 @base
abrt-plugin-logger.x86_64 2.1.11-52.el7.centos.2 @base
abrt-plugin-mailx.x86_64 2.1.11-52.el7.centos.2 @base
abrt-plugin-sosreport.x86_64 2.1.11-52.el7.centos.2 @base
abrt-python.x86_64 2.1.11-52.el7.centos.2 @base
abrt-python-doc.x86_64 2.1.11-52.el7.centos.2 @base
abrt-tui.x86_64 2.1.11-52.el7.centos.2 @base
acl.x86_64 2.2.51-15.el7 @anaconda/7.2
adcli.x86_64 0.8.2-2.el7_8 @updates
```
在这个例子中,列出了所有已安装的软件包以及库中的所有可用软件包。在每个软件包的名称后面,列出了软件包的版本、发行日期和描述。此外,在每个软件包的名称前面,还列出了软件包的类型,例如已安装软件包、库软件包或可用软件包。
阅读全文