Skip to content

Instantly share code, notes, and snippets.

@uwussimo
Last active March 1, 2024 02:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uwussimo/9758287f32a7b72335b5af842ff75020 to your computer and use it in GitHub Desktop.
Save uwussimo/9758287f32a7b72335b5af842ff75020 to your computer and use it in GitHub Desktop.
Install paru AUR manager on Arch Linux
#
# $PARU_CONF
# /etc/paru.conf
# ~/.config/paru/paru.conf
#
# See the paru.conf(5) manpage for options
#
# GENERAL OPTIONS
#
[options]
SkipReview
PgpFetch
Devel
Provides
DevelSuffixes = -git -cvs -svn -bzr -darcs -always -hg -fossil
CleanAfter
# We need to install rust
sudo pacman -S rustup, base-devel
# Install rust components
rustup # accept all defaults
# Let's clone the source code first
git clone https://aur.archlinux.org/paru.git
# Go to folder and install it
cd paru && makepkg -si
# Clean exit
cd ../ && rm -rf paru
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment