tldr/pages/linux/pacman.md

39 lines
958 B
Markdown
Raw Normal View History

2014-01-30 04:45:28 +00:00
# pacman
> Arch Linux package manager utility.
2023-05-26 10:05:31 +01:00
> See also: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`.
> For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
> More information: <https://man.archlinux.org/man/pacman.8>.
2014-01-30 04:45:28 +00:00
- Synchronize and update all packages:
2022-08-10 13:13:57 +01:00
`sudo pacman -Syu`
2014-01-30 04:45:28 +00:00
- Install a new package:
2014-01-30 04:45:28 +00:00
`sudo pacman -S {{package}}`
2014-01-30 04:45:28 +00:00
- Remove a package and its dependencies:
`sudo pacman -Rs {{package}}`
2014-01-30 04:45:28 +00:00
- Search the database for packages containing a specific file:
2014-01-30 04:45:28 +00:00
`pacman -F "{{file_name}}"`
2014-01-30 04:45:28 +00:00
- List installed packages and versions:
2014-01-30 04:45:28 +00:00
2022-08-10 13:13:57 +01:00
`pacman -Q`
- List only the explicitly installed packages and versions:
2022-08-10 13:13:57 +01:00
`pacman -Qe`
2016-01-05 02:19:53 +00:00
- List orphan packages (installed as dependencies but not actually required by any package):
2016-01-05 02:19:53 +00:00
2022-08-10 13:13:57 +01:00
`pacman -Qtdq`
2016-01-05 02:19:53 +00:00
- Empty the entire `pacman` cache:
2016-01-05 02:19:53 +00:00
2022-08-10 13:13:57 +01:00
`sudo pacman -Scc`