获取有关未安装的工具/包的信息

获取有关未安装的工具/包的信息

如何获取有关我尚未安装的软件包的信息(网络搜索除外)?

例如,假设我对 感兴趣iftop。如果我进行网络搜索,我可以找到维基百科文章和手册页,但是如何在不使用浏览器的情况下从终端找到类似的信息?

答案1

如果您使用的是基于 Debian 的系统(即 Ubuntu),您可以使用 apt-cache 命令来获取软件包的描述。任何更详细的内容(手册/信息页面)仅适用于已安装的软件包。

$apt-cache -f search iftop

Package: iftop
Description-md5: f7e93593aba6acc7b5a331b49f97466f
Description-en: displays bandwidth usage information on an network interface
 iftop does for network usage what top(1) does for CPU usage. It listens to
 network traffic on a named interface and displays a table of current bandwidth
 usage by pairs of hosts. Handy for answering the question "Why is my Internet
 link so slow?".

编辑: 或者你可以下载全部供以后离线查看的手册页。看Ubuntu 手册项目或者Linux 文档项目

相关内容