How To Install libaesgm on Rocky Linux 8
Introduction
In this tutorial we learn how to install libaesgm on Rocky Linux 8.
What is libaesgm
Library implementation of AES (Rijndael) cryptographic methods.
We can use yum or dnf to install libaesgm on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libaesgm.
Install libaesgm 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 libaesgm using dnf by running the following command:
sudo dnf -y install libaesgm
Install libaesgm 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 libaesgm using yum by running the following command:
sudo yum -y install libaesgm
How To Uninstall libaesgm on Rocky Linux 8
To uninstall only the libaesgm package we can use the following command:
sudo dnf remove libaesgm
libaesgm Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/d1
/usr/lib/.build-id/d1/247fdd53cb6ac71eafa390fe3161371bcebee5
/usr/lib64/libaesgm.so.0
/usr/lib64/libaesgm.so.0.0.0
/usr/share/doc/libaesgm
/usr/share/doc/libaesgm/aes.txt
/usr/share/doc/libaesgm/license.txt
/usr/share/doc/libaesgm/vb.txt
/usr/share/doc/libaesgm/via_ace.txt
References
Summary
In this tutorial we learn how to install libaesgm on Rocky Linux 8 using yum and dnf.