2016-01-06 13:38:13 +01:00
|
|
|
# dpkg-query
|
|
|
|
|
2024-02-25 07:46:24 -03:00
|
|
|
> Display information about installed packages.
|
2024-09-18 11:00:49 +02:00
|
|
|
> More information: <https://manned.org/dpkg-query.1>.
|
2016-01-06 13:38:13 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List all installed packages:
|
2016-01-06 13:38:13 +01:00
|
|
|
|
2022-07-20 10:50:21 -07:00
|
|
|
`dpkg-query --list`
|
2016-01-06 13:38:13 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List installed packages matching a pattern:
|
2016-01-06 13:38:13 +01:00
|
|
|
|
2022-07-20 10:50:21 -07:00
|
|
|
`dpkg-query --list '{{libc6*}}'`
|
2016-01-06 13:38:13 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List all files installed by a package:
|
2016-01-06 13:38:13 +01:00
|
|
|
|
2022-07-20 10:50:21 -07:00
|
|
|
`dpkg-query --listfiles {{libc6}}`
|
2016-01-06 13:38:13 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Show information about a package:
|
2016-01-06 13:38:13 +01:00
|
|
|
|
2022-07-20 10:50:21 -07:00
|
|
|
`dpkg-query --status {{libc6}}`
|
|
|
|
|
|
|
|
- Search for packages that own files matching a pattern:
|
|
|
|
|
|
|
|
`dpkg-query --search {{/etc/ld.so.conf.d}}`
|