Skip to content

Instantly share code, notes, and snippets.

@mokxter
Last active January 4, 2019 17:59
Show Gist options
  • Save mokxter/c3defbea035ecae6adb86274e04e59eb to your computer and use it in GitHub Desktop.
Save mokxter/c3defbea035ecae6adb86274e04e59eb to your computer and use it in GitHub Desktop.
Pacman Cheatsheet

Install package(s)

sudo pacman -S chromium
sudo pacman -S firefox git // For multiple package install

Remove package(s)

sudo pacman -R chromium

Remove package including associated packages

sudo pacman -Rs chromium

Checking the installed packages

sudo pacman -Qs firefox

Cache directory of the pacman

/var/cache/pacman/pkg

Installing package using the downloaded package file.

sudo pacman -U firefox-212123.pkg.tar.xz

Remove all the cache.

sudo pacman -Sc

Update the system

sudo pacman -Syu

Search package

sudo pacman -Ss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment