我想在使用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
(Related question with answer log hwinfo output with etckeeper)保留了这个输出的历史。
以下是我想改进的地方:
- ascii-art 线条不好。应该被删除。
- 前两个字符(例如
ii
)应删除或出现在末尾。
基于 rpm 的系统rpm -qa
完全符合我的需要。
尝试
如果您需要输出中数据包的确切版本,您可以执行以下操作:
这仅打印第 2 列和第 3 列。这也仅列出已安装的软件包,没有卸载或其他。
编辑:另一个选项是 dpkg-query:
其中--showformat(或-f)定义了你想要显示的列,在这种情况下,包名称、版本和架构以及最后的简短状态(例如“ii”和“rc”),“\n”是换行符。
顺便说一句,“ii”定义了已安装的包,“rc”是卸载的包,这就是我使用 grep 和 awk 过滤掉卸载的包的原因。
如果您喜欢,也可以像这样添加列宽:
负列宽意味着方向是左,正意味着右。
但要小心,因为如果宽度小于包名称中的字符数,包名称将被缩短。
我不确定您需要该列表的目的是什么。如果您只想拥有一个可读性好的列表,那么 awk 或其他命令没有任何问题,如果您想在另一台机器上安装软件的“备份”,
dpkg --get-selections
(没有任何管道)是去,见https://wiki.debian.org/ListInstalledPackages