How To Install multimon on Kali Linux
Introduction
In this tutorial we learn how to install multimon
on Kali Linux.
What is multimon
multimon is:
The multimon software can decode a variety of digital transmission modes commonly found on UHF radio. A standard PC soundcard is used to acquire the signal from a transceiver. The decoding is done completely in software. Currently, the following modes are supported: AX.25 1200 Baud AFSK 2400 Baud AFSK (2 variants) 4800 Baud HAPN 9600 Baud FSK (G3RUH) POCSAG 512 Baud 1200 Baud 2400 Baud Miscellaneous DTMF ZVEI An arbitrary set of the above modes may run concurrently on the same input signal (provided the CPU power is sufficient), so you do not have to know in advance which mode is used. Note however that some modes might require modifications to the radio (especially the 9600 baud FSK and the POCSAG modes) to work properly. POCSAG (Post Office Code Standards Advisory Group) is a common paging transmission format.
There are three methods to install multimon
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 multimon Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install multimon
using apt-get
by running the following command:
sudo apt-get -y install multimon
Install multimon Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install multimon
using apt
by running the following command:
sudo apt -y install multimon
Install multimon 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 update
After updating apt database, We can install multimon
using aptitude
by running the following command:
sudo aptitude -y install multimon
How To Uninstall multimon on Kali Linux
To uninstall only the multimon
package we can use the following command:
sudo apt-get remove multimon
Uninstall multimon And Its Dependencies
To uninstall multimon
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove multimon
Remove multimon Configurations and Data
To remove multimon
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge multimon
Remove multimon configuration, data, and all of its dependencies
We can use the following command to remove multimon
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge multimon
Dependencies
multimon have the following dependencies:
References
Summary
In this tutorial we learn how to install multimon
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.