pacman
Arch Linux package manager utility.
Some subcommands such as `pacman sync` have their own usage documentation.
- Synchronize and update all packages:
sudo pacman --sync --refresh --sysupgrade
sudo pacman --sync {package_name}
- Remove a package and its dependencies:
sudo pacman --remove --recursive {package_name}
- Search the package database for a regular expression or keyword:
pacman --sync --search "{search_pattern}"
- List installed packages and versions:
pacman --query
- List only the explicitly installed packages and versions:
pacman --query --explicit
- List orphan packages (installed as dependencies but not actually required by any package):
pacman --query --unrequired --deps --quiet
- Empty the entire pacman cache:
sudo pacman --sync --clean --clean
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).