How To Install libXres on AlmaLinux 8

In this tutorial we learn how to install libXres in AlmaLinux 8. libXres is X-Resource extension client library

Introduction

In this tutorial we learn how to install libXres on AlmaLinux 8.

What is libXres

X-Resource is an extension that allows a client to query the X server about its usage of various resources.

We can use yum or dnf to install libXres on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libXres.

Install libXres on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install libXres using dnf by running the following command:

sudo dnf -y install libXres

Install libXres on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install libXres using yum by running the following command:

sudo yum -y install libXres

How To Uninstall libXres on AlmaLinux 8

To uninstall only the libXres package we can use the following command:

sudo dnf remove libXres

References

Summary

In this tutorial we learn how to install libXres on AlmaLinux 8 using yum and dnf.