Contents

๐Ÿš€ TL;DR - pacman

I use Arch btw

pacman

The famous packet manager for Archlinux.

https://media.giphy.com/media/jxJjBMvqEvMSA/giphy.gif

Basic usage

1
2
3
4
5
pacman -S package # install package
pacman -R package # uninstall package
pacman -Syu # check for package updates
pacman -Q # list installed packages
pacman -Q word # list installed packages containing word

Bonus

Nothing to do with pacman, but you can install packages from the AUR repo too!

1
2
3
4
cd ~/.local/share
git clone aur_repo
cd aur_repo
makepkg -isc

AUR packages are updated by the community and are meant to be built from source, in order to optimize the package for your machine.

Resources