snippetbashTip
pacman --database — Operate on the Arch Linux package database. Modify certain attributes of the installed packages. See
Viewed 0 times
theoperatecommandcliarchlinuxpackagepacman --database
linux
Problem
How to use the
pacman --database command: Operate on the Arch Linux package database. Modify certain attributes of the installed packages. See also: pacman. More information: <https://manned.org/pacman.8>.Solution
pacman --database — Operate on the Arch Linux package database. Modify certain attributes of the installed packages. See also: pacman. More information: <https://manned.org/pacman.8>.Mark a package as implicitly installed:
sudo pacman -D --asdeps {{package}}Mark a package as explicitly installed:
sudo pacman -D --asexplicit {{package}}Chec[k] that all the package dependencies are installed:
pacman -DkChec[k] the sync [D]atabase to ensure all specified dependencies of downloadable packages are available:
pacman -DkkChec[k] and display in [q]uiet mode (only error messages are displayed):
pacman -DkqDisplay [h]elp:
pacman -DhCode Snippets
Mark a package as implicitly installed
sudo pacman -D --asdeps {{package}}Mark a package as explicitly installed
sudo pacman -D --asexplicit {{package}}Chec[k] that all the package dependencies are installed
pacman -DkChec[k] the sync [D]atabase to ensure all specified dependencies of downloadable packages are available
pacman -DkkChec[k] and display in [q]uiet mode (only error messages are displayed)
pacman -DkqContext
tldr-pages: linux/pacman --database
Revisions (0)
No revisions yet.