mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
637 B
Plaintext
30 lines
637 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# dpkg-query
|
|
|
|
> Display information about installed packages.
|
|
> More information: <https://manned.org/dpkg-query>.
|
|
|
|
- List all installed packages:
|
|
|
|
`dpkg-query {{[-l|--list]}}`
|
|
|
|
- List installed packages matching a pattern:
|
|
|
|
`dpkg-query {{[-l|--list]}} '{{libc6*}}'`
|
|
|
|
- List all files installed by a package:
|
|
|
|
`dpkg-query {{[-L|--listfiles]}} {{libc6}}`
|
|
|
|
- Show information about a package:
|
|
|
|
`dpkg-query {{[-s|--status]}} {{libc6}}`
|
|
|
|
- Search for packages that own files matching a pattern:
|
|
|
|
`dpkg-query {{[-S|--search]}} {{/etc/ld.so.conf.d}}`
|