我可以使用以下命令获取所有可用软件包及其详细信息的列表:
apt-cache search .
它输出如下所示的包列表:
i 0ad - Real-time strategy game of ancient warfare
i 0ad-data - Real-time strategy game of ancient warfare (data files)
i 0ad-data-common - Real-time strategy game of ancient warfare (common data files)
p 0ad-dbg - Real-time strategy game of ancient warfare (debug)
p 0xffff - Open Free Fiasco Firmware Flasher
p 2ping - Ping utility to determine directional packet loss
p 2vcard - perl script to convert an addressbook to VCARD file format
p 3270-common - Common files for IBM 3270 emulators and pr3287
p 389-admin - 389 Directory Administration Server
...
如何获得我未安装的 Ubuntu 版本的软件包列表?
因此,具体来说,我在哪里可以下载特定版本 Ubuntu 的所有可用软件包的数据库,以及如何以纯文本或格式从中获取详细信息(可能包括版本、大小、详细描述......)哪个很容易用脚本解析?
1.上线
我更喜欢使用http://packages.ubuntu.com/作为muru 的答案
2.离线,手动
否则寻找离线解决方案,那么您应该是 MR。APT 并开始从http://archive.ubuntu.com/ubuntu/dists/下载它们。
结果:
3.离线,使用apt-cache/overlay-filesystem/chroot
变坏了,高级设置:
实际上,我将使用在 16.04 上安装
sources.list*
相同的自定义apt-cache
,但apt
不会覆盖 16.04 中的实际列表文件/var/lib/apt/lists/
,更改将转到overlay
文件系统。设置:
使用:(你可以准备一个脚本)
使用chdist。此命令允许您像往常一样运行
apt-get
,apt-cache
但适用于不同版本的 Ubuntu(或 Debian 或实际上任何其他 Debian 派生的发行版)。它还提供了一个围绕grep-dctrl的包装器,可让您轻松搜索和报告元数据字段。
您已经拥有列出所有可能发布的命令的命令,但是好吧,让我们再深入一点好吗?所以
apt-cache search .
或apt-cache search ''
输出大约 2300+ 行,这实际上是所有可能的包的总量,包括不同的 DE 版本。为了更容易,您只能使用以下名称获取名称:
或者您是否喜欢更多信息并且不介意一长串您可以通过的列表
apt-cache policy
: