How To Install libXau on Rocky Linux 8

In this tutorial we learn how to install libXau on Rocky Linux 8. libXau is Sample Authorization Protocol for X

Introduction

In this tutorial we learn how to install libXau on Rocky Linux 8.

What is libXau

This is a very simple mechanism for providing individual access to an X Window System display.It uses existing core protocol and library hooks for specifying authorization data in the connection setup block to restrict use of the display to only those clients that show that they know a server-specific key called a “magic cookie”.

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

Install libXau on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install libXau

Install libXau on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install libXau

How To Uninstall libXau on Rocky Linux 8

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

sudo dnf remove libXau

libXau Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/31
/usr/lib/.build-id/31/207101ca01974ba406b3c442ee1232c7738269
/usr/lib64/libXau.so.6
/usr/lib64/libXau.so.6.0.0
/usr/share/doc/libXau
/usr/share/doc/libXau/AUTHORS
/usr/share/doc/libXau/COPYING
/usr/share/doc/libXau/ChangeLog
/usr/share/doc/libXau/README
/usr/lib/.build-id
/usr/lib/.build-id/cb
/usr/lib/.build-id/cb/b94748d2c5b2ac6e29e6db90aa4617f3cae858
/usr/lib/libXau.so.6
/usr/lib/libXau.so.6.0.0
/usr/share/doc/libXau
/usr/share/doc/libXau/AUTHORS
/usr/share/doc/libXau/COPYING
/usr/share/doc/libXau/ChangeLog
/usr/share/doc/libXau/README

References

Summary

In this tutorial we learn how to install libXau on Rocky Linux 8 using yum and dnf.