2014-01-29 21:45:28 -07:00
|
|
|
# pacman
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
> Arch Linux package manager utility.
|
2023-05-26 11:05:31 +02:00
|
|
|
> See also: `pacman-database`, `pacman-deptest`, `pacman-files`, `pacman-key`, `pacman-mirrors`, `pacman-query`, `pacman-remove`, `pacman-sync`, `pacman-upgrade`.
|
2022-12-05 08:57:55 +08:00
|
|
|
> For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
|
2021-01-19 11:40:16 -03:00
|
|
|
> More information: <https://man.archlinux.org/man/pacman.8>.
|
2014-01-29 21:45:28 -07:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Synchronize and update all packages:
|
2015-10-22 15:00:05 +08:00
|
|
|
|
2022-08-10 14:13:57 +02:00
|
|
|
`sudo pacman -Syu`
|
2014-01-29 21:45:28 -07:00
|
|
|
|
2017-11-27 22:05:09 +05:30
|
|
|
- Install a new package:
|
2014-01-29 21:45:28 -07:00
|
|
|
|
2022-08-10 14:13:57 +02:00
|
|
|
`sudo pacman -S {{package_name}}`
|
2014-01-29 21:45:28 -07:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Remove a package and its dependencies:
|
2015-10-22 15:00:05 +08:00
|
|
|
|
2022-08-10 14:13:57 +02:00
|
|
|
`sudo pacman -Rs {{package_name}}`
|
2014-01-29 21:45:28 -07:00
|
|
|
|
2016-12-29 20:24:05 +01:00
|
|
|
- Search the package database for a regular expression or keyword:
|
2014-01-29 21:45:28 -07:00
|
|
|
|
2022-08-10 14:13:57 +02:00
|
|
|
`pacman -Ss "{{search_pattern}}"`
|
2014-01-29 21:45:28 -07:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List installed packages and versions:
|
2014-01-29 21:45:28 -07:00
|
|
|
|
2022-08-10 14:13:57 +02:00
|
|
|
`pacman -Q`
|
2015-12-29 12:20:11 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List only the explicitly installed packages and versions:
|
2015-12-29 12:20:11 +01:00
|
|
|
|
2022-08-10 14:13:57 +02:00
|
|
|
`pacman -Qe`
|
2016-01-05 10:19:53 +08: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 10:19:53 +08:00
|
|
|
|
2022-08-10 14:13:57 +02:00
|
|
|
`pacman -Qtdq`
|
2016-01-05 10:19:53 +08:00
|
|
|
|
2021-06-07 21:26:05 +01:00
|
|
|
- Empty the entire pacman cache:
|
2016-01-05 10:19:53 +08:00
|
|
|
|
2022-08-10 14:13:57 +02:00
|
|
|
`sudo pacman -Scc`
|