1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/pacman-query.md

38 lines
800 B
Markdown
Raw Normal View History

2021-02-18 21:44:34 -03:00
# pacman --query
> Arch Linux package manager utility.
> See also: `pacman`.
2021-02-18 21:44:34 -03:00
> More information: <https://man.archlinux.org/man/pacman.8>.
- List installed packages and versions:
`pacman --query`
- List only packages and versions that were explicitly installed:
`pacman --query --explicit`
- Find which package owns a file:
`pacman --query --owns {{filename}}`
- Display information about an installed package:
`pacman --query --info {{package}}`
2021-02-18 21:44:34 -03:00
- List files owned by a package:
`pacman --query --list {{package}}`
2021-02-18 21:44:34 -03:00
- List orphan packages (installed as dependencies but not required by any package):
`pacman --query --unrequired --deps --quiet`
- List installed packages not found in the repositories:
`pacman --query --foreign`
- List outdated packages:
`pacman --query --upgrades`