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.
To install a package with Pacman, use the following command:
sudo pacman -S <package name>
To update all installed packages on your system, run:
sudo pacman -Syu
This will synchronize the package databases and upgrade all your packages to their latest versions.
To uninstall a package, use:
sudo pacman -R <package name>
If you want to remove a package and its unused dependencies, run:
sudo pacman -Rns <package name>
To search for a package in the Pacman repositories, use:
pacman -Ss <package name>
To list all installed packages, simply run:
pacman -Q
To clear the Pacman cache and free up space, use:
sudo pacman -Sc
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.
To install Flatpak, run:
sudo pacman -S flatpak
Note: It may be necessary to reboot your system after installing Flatpak. 🔄
You can also install apps directly from the terminal:
sudo flatpak install <app name>
To remove an app, run:
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.
To integrate AppImages with your system, install the AppImage Launcher:
sudo pacman -S appimagelauncher
Happy package managing! 🎉💻