Forrest logo
back to the pacman tool

pacman-query:tldr:9b396

pacman-query: List outdated packages.
$ pacman --query --upgrades
try on your machine

The command "pacman --query --upgrades" is used in Arch-based Linux distributions (such as Arch Linux) to query the package database and display a list of available package updates.

Here's a breakdown of the command:

  • "pacman" is the package manager used in Arch-based distributions. It is responsible for handling package installations, upgrades, and removals.
  • "--query" is a command-line option used to query the package database. It allows you to search for information about installed packages, including their versions and dependencies.
  • "--upgrades" is another option used with "--query". It specifically looks for available package upgrades. It retrieves a list of packages that have newer versions available in the repositories.

Therefore, when you run the command "pacman --query --upgrades", it will display a list of packages for which newer versions are available in the repositories. This can help you keep your system up-to-date by showing you which packages need to be upgraded.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pacman tool