How To Install dspam-devel on CentOS 7
Introduction
In this tutorial we learn how to install dspam-devel
on CentOS 7.
What is dspam-devel
DSPAM has had its core engine moved into a separate library, libdspam. This library can be used by developers to provide ‘drop-in’ spam filtering for their mail client applications, other Anti-Spam tools, or similar projects.
We can use yum
or dnf
to install dspam-devel
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install dspam-devel.
Install dspam-devel on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install dspam-devel
using yum
by running the following command:
sudo yum -y install dspam-devel
Install dspam-devel on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install dspam-devel
using dnf
by running the following command:
sudo dnf -y install dspam-devel
How To Uninstall dspam-devel on CentOS 7
To uninstall only the dspam-devel
package we can use the following command:
sudo dnf remove dspam-devel
References
Summary
In this tutorial we learn how to install dspam-devel
on CentOS 7 using yum
and dnf
.