How To Install dtmf2num on Kali Linux
Introduction
In this tutorial we learn how to install dtmf2num on Kali Linux.
What is dtmf2num
dtmf2num is:
This supports any type of wave file (frequencies, channels and 8, 16, 24 and 32 bits), automatic optimizations (DC bias adjust and normalization) and both WAV and raw PCM data.
The program has been successfully tested with many audio files and moreover with those highly dirt and damaged, for example recorded with a microphone in a room or at a very low volumes or with some noise.
There are three methods to install dtmf2num 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 dtmf2num Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install dtmf2num using apt-get by running the following command:
sudo apt-get -y install dtmf2numInstall dtmf2num Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install dtmf2num using apt by running the following command:
sudo apt -y install dtmf2numInstall dtmf2num Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install dtmf2num using aptitude by running the following command:
sudo aptitude -y install dtmf2numHow To Uninstall dtmf2num on Kali Linux
To uninstall only the dtmf2num package we can use the following command:
sudo apt-get remove dtmf2numUninstall dtmf2num And Its Dependencies
To uninstall dtmf2num and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove dtmf2numRemove dtmf2num Configurations and Data
To remove dtmf2num configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge dtmf2numRemove dtmf2num configuration, data, and all of its dependencies
We can use the following command to remove dtmf2num configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge dtmf2numDependencies
dtmf2num have the following dependencies:
References
Summary
In this tutorial we learn how to install dtmf2num package on Kali Linux using different package management tools: apt, apt-get and aptitude.