How To Install crm114 on Kali Linux
Introduction
In this tutorial we learn how to install crm114
on Kali Linux.
What is crm114
CRM114, the Controllable Regex Mutilator, is a system to examine incoming e-mail, system log streams, data files, or other data streams, and to sort, filter, or alter the incoming files or data streams however the user desires. Criteria for categorization of data can be by satisfaction of regular expressions, by sparse binary polynomial matching with a Bayesian Chain Rule evaluator, or by other means.
CRM114 is not just another drop-in spam-filtering system; its Sparse Binary Polynomial Hashing methods give it the power to develop highly accurate Bayesian filters on very little training.
CRM114 is compatible with SpamAssassin or other spam-flagging software; it can also be pipelined in front of or behind procmail. CRM114 is also useful as a syslog or firewall log filter, to flag up important events but ignore the ones that aren’t meaningful.
For mail filtering, installing metamail or mew-bin packages is recommended in order to have tools to decode MIME attachments.
There are three ways to install crm114
on Kali Linux . We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install crm114 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install crm114
using apt-get
by running the following command:
sudo apt-get -y install crm114
Install crm114 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install crm114
using apt
by running the following command:
sudo apt -y install crm114
Install crm114 Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install crm114
using aptitude
by running the following command:
sudo aptitude -y install crm114
How To Uninstall crm114 on Kali Linux
To uninstall only the crm114
package we can use the following command:
sudo apt-get remove crm114
Uninstall crm114 And Its Dependencies
To uninstall crm114
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove crm114
Remove crm114 Configurations and Data
To remove crm114
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge crm114
Remove crm114 configuration, data, and all of its dependencies
We can use the following command to remove crm114
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge crm114
References
Summary
In this tutorial we learn how to install crm114
using different package management tools like apt, apt-get and aptitude.