2014-01-30 04:45:28 +00:00
|
|
|
# pacman
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Arch Linux package manager utility.
|
2021-09-13 09:21:21 +01:00
|
|
|
> Some subcommands such as `pacman sync` have their own usage documentation.
|
2021-01-19 14:40:16 +00:00
|
|
|
> More information: <https://man.archlinux.org/man/pacman.8>.
|
2014-01-30 04:45:28 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Synchronize and update all packages:
|
2015-10-22 08:00:05 +01:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
`pacman --sync --refresh --sysupgrade`
|
2014-01-30 04:45:28 +00:00
|
|
|
|
2017-11-27 16:35:09 +00:00
|
|
|
- Install a new package:
|
2014-01-30 04:45:28 +00:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
`pacman --sync {{package_name}}`
|
2014-01-30 04:45:28 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Remove a package and its dependencies:
|
2015-10-22 08:00:05 +01:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
`pacman --remove --recursive {{package_name}}`
|
2014-01-30 04:45:28 +00:00
|
|
|
|
2016-12-29 19:24:05 +00:00
|
|
|
- Search the package database for a regular expression or keyword:
|
2014-01-30 04:45:28 +00:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
`pacman --sync --search "{{search_pattern}}"`
|
2014-01-30 04:45:28 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- List installed packages and versions:
|
2014-01-30 04:45:28 +00:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
`pacman --query`
|
2015-12-29 11:20:11 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- List only the explicitly installed packages and versions:
|
2015-12-29 11:20:11 +00:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
`pacman --query --explicit`
|
2016-01-05 02:19:53 +00:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
- List orphan packages (installed as dependencies but not actually required by any package):
|
2016-01-05 02:19:53 +00:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
`pacman --query --unrequired --deps --quiet`
|
2016-01-05 02:19:53 +00:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
- Empty the entire pacman cache:
|
2016-01-05 02:19:53 +00:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
`pacman --sync --clean --clean`
|