aur
aur copied to clipboard
ArchLinux Package Manager helper
aur
ArchLinux Package Manager Helper
Particularly the pacman is one of the best package manager I've ever used, but having to memorize the parameters to perform operations is not mentally comfortable (-Ss WTF), I understand that with the use this becomes natural, but it bothers me.
aur helper exists to create alias for the pacman parameters (and similar software) following the pattern of the commands of other package managers.
support:
Install
Git Version:
curl -L "https://raw.githubusercontent.com/avelino/aur/master/aur" -o /usr/local/bin/aur && \
chmod +x /usr/local/bin/aur && \
aur version
Used
updateupdates all software already installedsearchsearch software on arch linux databaseinstallinstall softwareremoveremove softwareinfoshow software descriptionchangelogshow software chnagelog (all description)clearclean up all traces of software installationlistlist all softare installedorphanslist all orphan software installeddepslists all software installation dependenciesinstall-bininstall yay softwarerefresh-binupgradeaurbinrefresh-keysupgrade all gpg keys, usedsudo pacman-keysclear-cacheclear all package cache folder, ex/var/cache/pacman/pkg/,/var/lib/pacman/,/home/avelino/.cache/pacaur, ...
How to
Example of how to use aur (this software)
aur update && \
aur install yay
Removing unused packages (orphans)
For recursively removing orphans and their configuration files:
aur uninstall $(aur orphans)
Backup and recovery installed packages
How to backup installed packages to an archive and install all packages from the archive created
# backup
aur list > arch.packages
# recovery
aur install $(cat arch.packages)