所有软件包的可排序列表(dpkg)

所有软件包的可排序列表(dpkg)

我想要转储使用 的系统上所有已安装的软件包dpkg

到现在为止我都在使用dpkg -l

但它有一个缺点:对结果进行排序没有意义。

头:

root@aptguettler:~# LANG=C dpkg-query -l| sort | head
+++-===========================================================-=================================================-============-================================================================================
Desired=Unknown/Install/Remove/Purge/Hold
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
ii  a11y-profile-manager-indicator                              0.1.10-0ubuntu3                                   amd64        Accessibility Profile Manager - Unity desktop indicator

尾巴:

root@aptguettler:~# LANG=C dpkg-query -l| sort | tail
rc  texlive-publishers-doc                                      2015.20160320-1                                   all          TeX Live: Documentation files for texlive-publishers
rc  texlive-science                                             2015.20160320-1                                   all          TeX Live: Natural and computer sciences
rc  texlive-science-doc                                         2015.20160320-1                                   all          TeX Live: Documentation files for texlive-science
rc  tpconfig                                                    3.1.3-15                                          amd64        touchpad device configuration utility
rc  ttf-indic-fonts-core                                        1:0.5.14ubuntu1                                   all          Core collection of free fonts for languages of India
rc  ttf-punjabi-fonts                                           1:0.5.14ubuntu1                                   all          Free TrueType fonts for the Punjabi language
rc  unity-lens-friends                                          0.1.3+14.04.20140317-0ubuntu1                     amd64        Friends scope for unity
rc  webaccounts-extension-common                                0.5-0ubuntu2.14.04.1                              amd64        Ubuntu Online Accounts browser extension - common files
rc  xfonts-mathml                                               6ubuntu1                                          all          Type1 Symbol font for MathML
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend

etckeeper我通过(相关问题与答案)保存此输出的历史记录使用 etckeeper 记录 hwinfo 输出)。

以下是我想改进的地方:

  • ASCII 线条不好看。应该删除。
  • 前两个字符(例如ii)应该被删除或出现在末尾。

基于 rpm 的系统rpm -qa完全满足我的需要。

答案1

尝试

dpkg --get-selections | grep -v deinstall

如果您需要输出中数据包的精确版本,您可以执行以下操作:

dpkg -l | grep '^ii' | awk '{print $2 "\t" $3}'

这仅打印第 2 列和第 3 列。这也仅列出已安装的软件包,没有卸载的软件包或其他软件包。

编辑:另一个选项是 dpkg-query:

dpkg-query --show --showformat='${Package} ${Version}  ${Architecture} ${db:Status-Abbrev} \n'

其中 --showformat(或 -f)定义要显示的列,在本例中为软件包名称、版本和体系结构以及末尾的简短状态(例如“ii”和“rc”),“\n”是换行符。

顺便说一下,“ii”定义已安装的包,“rc”是未安装的包,这就是我使用 grep 和 awk 过滤掉未安装的包的原因。

如果您觉得有趣,也可以像这样添加列宽:

dpkg-query --show --showformat='${Package;-50} ${Version;-40}  ${Architecture;-5} ${db:Status-Abbrev} \n'

负的列宽表示方向为左,正的表示方向为右。

但要小心,因为如果宽度小于包名称中的字符数,包名称将被截短。

我不太确定你需要这个列表的目的是什么。如果你只是想要一个可读性好的列表,awk 或其他命令没有什么问题,如果你想要“备份”你的软件以安装在另一台机器上,dpkg --get-selections(没有任何管道)是可行的方法,请参阅https://wiki.debian.org/ListInstalledPackages

相关内容