How To Install libkadm5 on Rocky Linux 8
Introduction
In this tutorial we learn how to install libkadm5 on Rocky Linux 8.
What is libkadm5
Kerberos is a network authentication system. The libkadm5 package contains only the libkadm5clnt and libkadm5serv shared objects. This interface is not considered stable.
We can use yum or dnf to install libkadm5 on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libkadm5.
Install libkadm5 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 libkadm5 using dnf by running the following command:
sudo dnf -y install libkadm5
Install libkadm5 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 libkadm5 using yum by running the following command:
sudo yum -y install libkadm5
How To Uninstall libkadm5 on Rocky Linux 8
To uninstall only the libkadm5 package we can use the following command:
sudo dnf remove libkadm5
libkadm5 Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/0e
/usr/lib/.build-id/0e/bab9320683438abf85cb21ba19812d180fdbbd
/usr/lib/.build-id/4c
/usr/lib/.build-id/4c/2f9f906702af8e845b8090c38344843e5613a6
/usr/lib64/libkadm5clnt.so
/usr/lib64/libkadm5clnt_mit.so
/usr/lib64/libkadm5clnt_mit.so.12
/usr/lib64/libkadm5clnt_mit.so.12.0
/usr/lib64/libkadm5srv.so
/usr/lib64/libkadm5srv_mit.so
/usr/lib64/libkadm5srv_mit.so.12
/usr/lib64/libkadm5srv_mit.so.12.0
/usr/lib/.build-id
/usr/lib/.build-id/a9
/usr/lib/.build-id/a9/5a9aa2b0426fcf86b8d4144a18e684c8b7c8b9
/usr/lib/.build-id/f8/d7081ed4d2e90be00eafd9c2166d622f75ab4a
/usr/lib/libkadm5clnt.so
/usr/lib/libkadm5clnt_mit.so
/usr/lib/libkadm5clnt_mit.so.12
/usr/lib/libkadm5clnt_mit.so.12.0
/usr/lib/libkadm5srv.so
/usr/lib/libkadm5srv_mit.so
/usr/lib/libkadm5srv_mit.so.12
/usr/lib/libkadm5srv_mit.so.12.0
References
Summary
In this tutorial we learn how to install libkadm5 on Rocky Linux 8 using yum and dnf.