aura Command Examples

The Aura Package Manager is a secure, multilingual package manager for Arch Linux and the AUR. The AUR is a community-driven repository of Arch Linux packages that are not included in the official Arch Linux repositories. Aura is a command line tool that can be used to search, install, and manage packages from the AUR.

use the aura command to search for packages in the AUR, install packages, and manage your local AUR packages. For example, to search for a package named “foo”, you can use the following command:

# aura -Ss foo

To install a package from the AUR, use the -A option followed by the package name. For example, to install the package “bar” from the AUR, you can use the following command:

# aura -A bar

For more information about using Aura and a complete list of options and commands, you can refer to the Aura documentation or the Aura man page:

# man aura

aura Command Examples

1. Search for packages from the official repositories and AUR:

# aura --aursync --both --search {{package_name|search_regex}}

2. Install a package from the AUR:

# aura --aursync {{package_name}}

3. Update all AUR packages in a verbose mode and remove all make dependencies:

# aura --aursync --diff --sysupgrade --delmakedeps --unsuppress

4. Install a package from the official repositories:

# aura --sync {{package_name}}

5. Synchronize and update all packages from the official repositories:

# aura --sync --refresh --sysupgrade

6. Downgrade a package using the package cache:

# aura --downgrade {{package_name}}

7. Remove a package and its dependencies:

# aura --remove --recursive --unneeded {{package_name}}

8. Remove orphan packages (installed as dependencies but not required by any package):

# aura --orphans --abandon
Related Post