mirror of
https://github.com/cheat/cheat.git
synced 2025-09-02 10:08:30 +02:00
Added yaourt (Yet AnOther User Repository Tool) cheatsheet
This commit is contained in:
@ -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)>
|
||||
|
Reference in New Issue
Block a user