我想获得有关我在我的机器pacman
上使用时查询的包的附加描述性(自由文本)信息(实际上)。Arch Linux
Parabola GNU/Linux-Libre
虽然 和 都pacman -Qi <name-of-package>
为pacman -Si <name-of-package>
我提供了一个名为 的字段Description
,但这仅包含该包的一行摘要。
例子:
$ pacman -Qi gimp
...
Description: GNU Image Manipulation Programm
...
当将此与我的计算机上的apt
(或aptitude
)进行比较时(实际上),我可以使用或不仅获得这一行摘要,还可以使用一个或多个带有自由文本信息的附加段落。Debian Stable
PureOS 9.0 Amber
apt show <name-of-package>
aptitude show <name-of-package>
例子:
$ apt show gimp
...
Description: GNU Image Manipulation Program
GIMP is an advanced picture editor. You can use it to edit, enhance, and
retouch photos and scans, create drawings, and make your own images.
It has a large collection of professional-level editing tools and
filters, similar to the ones you might find in Photoshop. Numerous
fine-control settings and features like layers, paths, masks, and
scripting give you total control over your images.
.
Many image file formats are supported, including JPEG, Photoshop (.psd),
and Paint Shop Pro (.psp) files. It can also be used to scan and print
photos.
.
To open files remotely (like over HTTP), install the gvfs-backends
package.
.
To use a MIDI device (like a musical keyboard) as an input controller in GIMP,
install libasound2 and read the how-to at /usr/share/doc/gimp/README.MIDI
这罗塞塔为pacman
说pacman -Si
orpacman -Qi
相当于apt show
or zypper info
,但我缺少附加的自由文本描述(如果我还不知道该程序,这显然非常有用)。
是否有一个pacman
- 选项来启用它?或者这些信息只是在Arch Linux
- 或Parabola
- 存储库中丢失了?