How To Install libdkimpp-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install libdkimpp-devel
on Rocky Linux 8.
What is libdkimpp-devel
This package contains the header files and libraries for developing with libdkimpp.
We can use yum
or dnf
to install libdkimpp-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libdkimpp-devel.
Install libdkimpp-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 libdkimpp-devel
using dnf
by running the following command:
sudo dnf -y install libdkimpp-devel
Install libdkimpp-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 libdkimpp-devel
using yum
by running the following command:
sudo yum -y install libdkimpp-devel
How To Uninstall libdkimpp-devel on Rocky Linux 8
To uninstall only the libdkimpp-devel
package we can use the following command:
sudo dnf remove libdkimpp-devel
libdkimpp-devel Package Contents on Rocky Linux 8
/usr/include/libdkim++
/usr/include/libdkim++/Base64.hpp
/usr/include/libdkim++/Canonicalization.hpp
/usr/include/libdkim++/DKIM.hpp
/usr/include/libdkim++/EncodedWord.hpp
/usr/include/libdkim++/Exception.hpp
/usr/include/libdkim++/MailParser.hpp
/usr/include/libdkim++/PublicKey.hpp
/usr/include/libdkim++/QuotedPrintable.hpp
/usr/include/libdkim++/Resolver.hpp
/usr/include/libdkim++/Signatory.hpp
/usr/include/libdkim++/SignatoryOptions.hpp
/usr/include/libdkim++/Signature.hpp
/usr/include/libdkim++/TagList.hpp
/usr/include/libdkim++/Tokenizer.hpp
/usr/include/libdkim++/Util.hpp
/usr/include/libdkim++/Validatory.hpp
/usr/lib64/libdkim++.so
/usr/lib64/pkgconfig/libdkim++.pc
References
Summary
In this tutorial we learn how to install libdkimpp-devel
on Rocky Linux 8 using yum and dnf.