-
-
Notifications
You must be signed in to change notification settings - Fork 2
Linux paru Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to paru AUR helper on Linux, covering Arch Linux, CachyOS, and other distributions including installation, usage, and AUR package management.
Arch/CachyOS:
# Install git and base-devel
sudo pacman -S git base-devel
# Clone paru
git clone https://aur.archlinux.org/paru.git
cd paru
# Build and install
makepkg -siCheck paru:
# Check version
paru --version
# Check help
paru --helpSearch AUR:
# Search packages
paru package-name
# Search with details
paru -Ss package-nameInstall from AUR:
# Install package
paru -S package-name
# Install with confirmation
paru -S package-name --noconfirmUpdate system:
# Update all packages
paru -Syu
# Update AUR packages only
paru -SuaUninstall:
# Remove package
paru -R package-name
# Remove with dependencies
paru -Rs package-nameEdit config:
# Edit config
vim ~/.config/paru/paru.confConfiguration:
# AUR URL
AURURL=https://aur.archlinux.org
# Build directory
BUILDDIR=$HOME/.cache/paru
# Editor
EDITOR=vim
Check installation:
# Check paru
which paru
paru --version
# Reinstall if needed
cd ~/paru
makepkg -siThis guide covered paru installation, AUR package management, and configuration for Arch Linux, CachyOS, and other distributions.
- yay Guide - yay AUR helper
- Package Management - Package management
- paru: https://github.com/Morganamilo/paru
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.