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
update
updates all software already installedsearch
search software on arch linux databaseinstall
install softwareremove
remove softwareinfo
show software descriptionchangelog
show software chnagelog (all description)clear
clean up all traces of software installationlist
list all softare installedorphans
list all orphan software installeddeps
lists all software installation dependenciesinstall-bin
install yay softwarerefresh-bin
upgradeaur
binrefresh-keys
upgrade all gpg keys, usedsudo pacman-keys
clear-cache
clear 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)