Forrest logo
back to context overview

pacman

List of commands for pacman:

  • pacman:ai:2fc51 This command installs PHP 8.2 in Arch Linux using the package manager 'pacman'.
    $ pacman -Syu php
    try on your machine
    explain this command
  • pacman:ai:3aa8b what happened to the aurvote package in the aur
    $ pacman -S aurvote
    try on your machine
    explain this command
  • pacman:ai:4e491 How i install paccache
    $ pacman -S pacman-contrib
    try on your machine
    explain this command
  • pacman:ai:84d93 how do I remove orphaned dependencies from pacman and yay
    $ pacman -Rns $(pacman -Qdtq) && yay -Rns $(yay -Qdtq)
    try on your machine
    explain this command
  • pacman:ai:8577a Install rsyslogd package using pacman package manager
    $ pacman -S rsyslog
    try on your machine
    explain this command
  • pacman:ai:96e14 Update and optimize the Pacman mirrorlist using reflector
    $ pacman -Sy reflector && reflector -c 'United States' -f 12 -l 10 --sort rate --save /etc/pacman.d/mirrorlist
    try on your machine
    explain this command
  • pacman:tldr:05d7e pacman: Synchronize and update all packages.
    $ sudo pacman -Syu
    try on your machine
    explain this command
  • pacman:tldr:0e8f8 pacman: List only the explicitly installed packages and versions.
    $ pacman -Qe
    try on your machine
    explain this command
  • pacman:tldr:515fa pacman: Empty the entire pacman cache.
    $ sudo pacman -Scc
    try on your machine
    explain this command
  • pacman:tldr:658b5 pacman: List installed packages and versions.
    $ pacman -Q
    try on your machine
    explain this command
  • pacman:tldr:722cd pacman: Search the package database for a regular expression or keyword.
    $ pacman -Ss "${search_pattern}"
    try on your machine
    explain this command
  • pacman:tldr:9adad pacman: Install a new package.
    $ sudo pacman -S ${package_name}
    try on your machine
    explain this command
  • pacman:tldr:da6d4 pacman: List orphan packages (installed as dependencies but not actually required by any package).
    $ pacman -Qtdq
    try on your machine
    explain this command
  • pacman:tldr:f6941 pacman: Remove a package and its dependencies.
    $ sudo pacman -Rs ${package_name}
    try on your machine
    explain this command
back to context overview