Simple Guide to Installing Programs on CachyOS

Official Method (Repositories)

To install programs that are in the official repositories, you have two equivalent options:

Both methods do the same thing: manage official Arch and CachyOS packages. The difference is just how you use them.

Example in terminal:

sudo pacman -S package-name

In the graphical interface, just search for the program and click install.

Remember: It’s good practice to keep your system updated with:

sudo pacman -Syu

Method for AUR (Arch User Repository)

If the program isn't in the official repositories, you look for it in AUR. To install from AUR, you use a tool called paru (or another similar).

Example:

paru equibop-bin

⚠️ Important: Don’t use sudo with paru. This command must be run without administrator privileges, or it will give you an error.

What does “-bin” mean?

Warning about AUR

AUR packages are created by the community and are not as controlled as the official ones. Therefore:

Quick Summary

Method Command or Action Purpose
CachyOS Package Installer Graphical interface Easily install official packages
pacman sudo pacman -S package-name Install official packages via terminal
paru paru package-name Install community (AUR) packages without sudo
Prioritize “-bin” packages Example: paru equibop-bin Precompiled binary packages, faster installation

If you want to dive deeper, check official documentation at the Arch Linux wiki and the CachyOS wiki.


I created this documentation because in the CachyOS wiki I couldn’t find anything explained this simply, and because a friend named Nakarer, who is new to Arch and only knew Debian (apt), needed help understanding how to install programs here.

#Tutorials #linux #EN