Forrest logo
back to context overview

pacman-remove

List of commands for pacman-remove:

  • pacman-remove:tldr:24e0a pacman-remove: Remove a package without prompting.
    $ sudo pacman --remove --noconfirm ${package_name}
    try on your machine
    explain this command
  • pacman-remove:tldr:3e1ad pacman-remove: Display help for this subcommand.
    $ pacman --remove --help
    try on your machine
    explain this command
  • pacman-remove:tldr:8fe4d pacman-remove: Remove a package and its dependencies.
    $ sudo pacman --remove --recursive ${package_name}
    try on your machine
    explain this command
  • pacman-remove:tldr:a1932 pacman-remove: Remove orphan packages (installed as dependencies but not required by any package).
    $ sudo pacman --remove --recursive --nosave $(pacman --query --unrequired --deps --quiet)
    try on your machine
    explain this command
  • pacman-remove:tldr:a4d17 pacman-remove: List packages that would be affected (does not remove any packages).
    $ pacman --remove --print ${package_name}
    try on your machine
    explain this command
  • pacman-remove:tldr:c0137 pacman-remove: Remove a package and all packages that depend on it.
    $ sudo pacman --remove --cascade ${package_name}
    try on your machine
    explain this command
  • pacman-remove:tldr:ecab8 pacman-remove: Remove a package and both its dependencies and configuration files.
    $ sudo pacman --remove --recursive --nosave ${package_name}
    try on your machine
    explain this command
back to context overview