Welcome to the BredOS Package Managers guide! Here, you'll learn how to install and manage applications. Get ready to take control of your system's apps!
Pacman is the default package manager for BredOS, known for its speed and simplicity when managing software packages.
sudo pacman -S <package name>
sudo pacman -Syu
This will synchronize the package databases and upgrade all your packages to their latest versions.
sudo pacman -R <package name>
sudo pacman -Rns <package name>
pacman -Ss <package name>
pacman -Q
sudo pacman -Sc
If you have problems to install any package, because of the error error: keyring: signature from "<name of signer here>" is unknown trust, resetting the database containing the signature keys for pacman and rebuilding it, fixes it.
sudo rm -rf /etc/pacman.d/gnupg
sudo pacman-key --init
sudo pacman-key --populate
Pacman is an essential tool for managing your BredOS system — quick, efficient, and powerful!
Flatpak provides a sandboxed environment for running applications, independent of the host system’s software.
sudo pacman -S flatpak
It may be necessary to reboot your system after installing Flatpak.

sudo flatpak install <app name>
sudo flatpak uninstall <app name>
Alternatively, you can manage Flatpak apps using a graphical store like Pamac.
AppImage allows you to run applications as standalone executables without the need for installation or package management.
sudo pacman -S appimagelauncher
Happy package managing!