Added yaourt (Yet AnOther User Repository Tool) cheatsheet

This commit is contained in:
Manu
2013-09-03 05:39:24 +02:00
parent 221c1ce190
commit 837042f718
2 changed files with 34 additions and 0 deletions

View File

@ -30,3 +30,14 @@ pacman -Qe
# To list orphan packages (installed as dependencies and not required anymore)
pacman -Qdt
# You can't directly install packages from the Arch User Database (AUR) with pacman.
# You need yaourt to perform that. But considering yaourt itself is in the AUR, here is how to
build a package from its tarball.
# First, get the .tar.gz archive and unpack it
wget <archive url>
tar -xzf <archive file>
cd <unpacked folder>
# Then build the package and install it
makepkg -s
pacman -U <package file (.pkg.tar.xz)>