Want to install packages on Arch Linux but do not know how? A lot of people face this problem when they commencement migrate from Debian-based distributions to Arch. However, you can easily manage packages on your Curvation-based system using package managers.

Pacman is the default package manager that comes pre-installed in every Arch distribution. But still, there's a need for other parcel managers as Pacman doesn't back up packages from the Arch User Repository.

Package Managers in Arch Linux

Although Curvation Linux comes with Pacman as the default package manager, you can install other packet managers such equally Yay. Dissimilar Pacman, these package managers allow you to add together new packages from the official Arch repository and the AUR (Arch User Repository).

While other package managers take been used over the years, examples such equally Yaourt and Aurman are no longer maintained. Consequently, Pacman and Yay are safer and more reliable parcel managers to rely on in Curvation Linux.

AUR is a community-organized repository that provides users with a platform to share packages developed by them. If you are a developer, you lot can add packages to the AUR, and other users can install them on their system with ease.

1. Pacman

Every bit mentioned higher up, every Arch system comes with Pacman every bit its default package manager. The most notable feature of Pacman is that it regularly syncs your system'due south packages with the master server, and in turn, keeps your system up to date.

2. Yay

As the developers of Yaourt and Aurman won't be releasing any updates subsequently the discontinuation, Arch users take started using Yay to add packages from the AUR. The main aim of Yay was to minimize user input and to provide a Pacman-like interface.

You won't be able to install Yay using Pacman, as information technology does non support calculation packages from the Arch User Repository straight. Therefore, you volition have to install the Yay package manager manually using its Git repository. Here's how to install information technology on your system.

Step i: Y'all will require git to clone the yay repository.

          pacman -South --needed git base of operations-devel        

Step 2: Clone the repository to your local storage.

          git            clone            https://aur.archlinux.org/yay-git.git        

Step 3: Change the permissions of the folder.

          chmod 777 /yay-git        

Step iv: Navigate to the directory where you lot cloned the repository.

                      cd            yay-git

Footstep 5: Utilize themakepkg command to build the package. Make sure that you do not run the following command equally the root user, otherwise, it will enhance an error.

          makepkg -si        

Updating and Upgrading Packages

If you have simply installed Arch Linux, and so before you tin add or remove packages, you will take to sync your system with the principal servers by updating your local package list.

Then, you tin easily upgrade all of your packages to the latest version past downloading the files from official servers.

Using Pacman

To update your package listing using Pacman, use the -Sy flag with the command.

          sudo pacman -Sy        

Later synchronizing your organization's package list with the master servers, you demand to upgrade the packages. Use the -Syu flag to exercise the same. This command tin can accept some fourth dimension depending on the list of the packages and your network connectivity.

          sudo pacman -Syu        

You can save the attempt of typing both of these commands by combining them using the -Syyu flag. Pacman will start downloading the latest packages automatically after updating the bundle list.

          sudo pacman -Syyu        

Using Yay

The Yay package managing director allows yous to update and upgrade your packages efficiently using your terminal. To do this, just use the -Syu flag with the yay command.

          sudo yay -Syu        

Adding Packages

Adding packages is piece of cake once you lot know which commands to execute. All y'all have to practise is type the bundle manager commands in the terminal.

Flathub and Snap Store are two great GUI applications that you tin use to install software and applications on your Linux machine.

Install Packages With Pacman

Pacman uses the TAR file extension to package applications. It works efficiently with the Curvation Linux arrangement architecture. To add a package, you take to use the -S flag with the default command as follows.

          sudo pacman -S packagename        

For instance,

          sudo pacman -Southward cmatrix        

To install multiple packages at once, blazon in the name of all the packages divided by the infinite graphic symbol.

          sudo pacman -S cmatrix vlc python        

Y'all can also get data about packages after installing them. The output provides details about the name, version, compages, and license of the bundle. To practice this, replace the -South flag with -Qi in the default pacman command.

          pacman -Qi cmatrix        

Install Packages With Yay

The syntax of the Yay install command is pretty similar to that of Pacman. To install a package using the Yay bundle manager, only utilize the -S flag with the default command.

          yay -S packagename        

Removing Packages in Arch

Arch Linux gives you the command to remove packages once you don't need them, and that's i of the many reasons why you should install Arch Linux. You can remove almost whatsoever package from your system if you have the dominance, of course. Let'south see how you tin can delete a package on Arch Linux.

Remove Packages With Pacman

Removing a package is easy too. All you take to do is employ -R instead of the -South flag in the default pacman control.

          sudo pacman -R cmatrix        

If the package is not present in your system, y'all will receive an mistake output that will state "error: target not found: packagename".

Remove Packages With Yay

To remove packages using Yay, add the -R flag to the default yay command. You can also employ the -Rns flag to remove all unnecessary dependencies from your system.

          yay -R cmatrix
yay -Rns cmatrix

If you lot want to remove the packages that your arrangement doesn't demand, use the -Yc flag with the command.

          yay -Yc        

Managing Packages on Curvation Linux

There are multiple means to add and remove packages on an Arch-based Linux distribution. You can use package managers such as Pacman, Yaourt, and Yay. While some package managers allow the download of packages from the Arch User Repository, others like Pacman practice non support the AUR.

If you are not a fan of package managers, y'all tin can always download the packages you desire manually. Several websites are bachelor on the net that provide TAR, RPM, and DEB packages to Linux users.

8 Sites for Downloading DEB or RPM Linux Apps

Read Next

About The Author