How To Install gsm0710muxd on Kali Linux
Introduction
In this tutorial we learn how to install gsm0710muxd
on Kali Linux.
What is gsm0710muxd
gsm0710muxd is:
Pyneo mobile stack is a muxer for GSM modems to allow more than one channel to be used with the modem. Each channel can be used to issue phonecalls, watch signal strength, receiving sms or even doing ppp (GPRS) at the same time.
Access to the multiplexer is managed via D-Bus.
There are three methods to install gsm0710muxd
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 gsm0710muxd Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install gsm0710muxd
using apt-get
by running the following command:
sudo apt-get -y install gsm0710muxd
Install gsm0710muxd Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install gsm0710muxd
using apt
by running the following command:
sudo apt -y install gsm0710muxd
Install gsm0710muxd 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 gsm0710muxd
using aptitude
by running the following command:
sudo aptitude -y install gsm0710muxd
How To Uninstall gsm0710muxd on Kali Linux
To uninstall only the gsm0710muxd
package we can use the following command:
sudo apt-get remove gsm0710muxd
Uninstall gsm0710muxd And Its Dependencies
To uninstall gsm0710muxd
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gsm0710muxd
Remove gsm0710muxd Configurations and Data
To remove gsm0710muxd
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gsm0710muxd
Remove gsm0710muxd configuration, data, and all of its dependencies
We can use the following command to remove gsm0710muxd
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gsm0710muxd
Dependencies
gsm0710muxd have the following dependencies:
References
Summary
In this tutorial we learn how to install gsm0710muxd
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.