HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pacaur — A utility for Arch Linux to build and install packages from the Arch User Repository. More informati

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandpacaurbuildcliarchlinuxforutility
linux

Problem

How to use the pacaur command: A utility for Arch Linux to build and install packages from the Arch User Repository. More information: <https://github.com/rmarquis/pacaur#name>.

Solution

pacaur — A utility for Arch Linux to build and install packages from the Arch User Repository. More information: <https://github.com/rmarquis/pacaur#name>.

Synchronize and update all packages (includes AUR):
pacaur -Syu


Synchronize and update only AUR packages:
pacaur -Syua


Install a new package (includes AUR):
pacaur -S {{package}}


Remove a package and its dependencies (includes AUR packages):
pacaur -Rs {{package}}


Search the package database for a keyword (includes AUR):
pacaur -Ss {{keyword}}


List all currently installed packages (includes AUR packages):
pacaur -Qs

Code Snippets

Synchronize and update all packages (includes AUR)

pacaur -Syu

Synchronize and update only AUR packages

pacaur -Syua

Install a new package (includes AUR)

pacaur -S {{package}}

Remove a package and its dependencies (includes AUR packages)

pacaur -Rs {{package}}

Search the package database for a keyword (includes AUR)

pacaur -Ss {{keyword}}

Context

tldr-pages: linux/pacaur

Revisions (0)

No revisions yet.