mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
709 B
Plaintext
34 lines
709 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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`
|