How To Install libtomcrypt-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install libtomcrypt-devel
on Rocky Linux 8.
What is libtomcrypt-devel
The libtomcrypt-devel package contains libraries and header files for developing applications that use libtomcrypt.
We can use yum
or dnf
to install libtomcrypt-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libtomcrypt-devel.
Install libtomcrypt-devel 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 libtomcrypt-devel
using dnf
by running the following command:
sudo dnf -y install libtomcrypt-devel
Install libtomcrypt-devel 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 libtomcrypt-devel
using yum
by running the following command:
sudo yum -y install libtomcrypt-devel
How To Uninstall libtomcrypt-devel on Rocky Linux 8
To uninstall only the libtomcrypt-devel
package we can use the following command:
sudo dnf remove libtomcrypt-devel
libtomcrypt-devel Package Contents on Rocky Linux 8
/usr/include/tomcrypt.h
/usr/include/tomcrypt_argchk.h
/usr/include/tomcrypt_cfg.h
/usr/include/tomcrypt_cipher.h
/usr/include/tomcrypt_custom.h
/usr/include/tomcrypt_hash.h
/usr/include/tomcrypt_mac.h
/usr/include/tomcrypt_macros.h
/usr/include/tomcrypt_math.h
/usr/include/tomcrypt_misc.h
/usr/include/tomcrypt_pk.h
/usr/include/tomcrypt_pkcs.h
/usr/include/tomcrypt_prng.h
/usr/lib64/libtomcrypt.so
/usr/lib64/pkgconfig/libtomcrypt.pc
References
Summary
In this tutorial we learn how to install libtomcrypt-devel
on Rocky Linux 8 using yum and dnf.