How To Install libosmo-sigtran-doc on Kali Linux

In this tutorial we learn how to install libosmo-sigtran-doc on Kali Linux. libosmo-sigtran-doc is Documentation for the Osmocom SIGTRAN library

Introduction

In this tutorial we learn how to install libosmo-sigtran-doc on Kali Linux.

What is libosmo-sigtran-doc

libosmo-sigtran-doc is:

libosmo-sigtran is a shared library containing SS7/SIGTRAN related functionality, including connection-less and connection-oriented SCCP as per ITU-T Q.71x, M3UA (MTP3 User Adaptation) according to IETF RFC4666, SUA (SCCP User Adpatation) according to IETF RFC3868 as well as MTP-level routing function and handling of signaling links, linksets, ASPs, SGs, etc. This package provides documentation for the Osmocom SIGTRAN Library.

There are three methods to install libosmo-sigtran-doc 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 libosmo-sigtran-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libosmo-sigtran-doc using apt-get by running the following command:

sudo apt-get -y install libosmo-sigtran-doc

Install libosmo-sigtran-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libosmo-sigtran-doc using apt by running the following command:

sudo apt -y install libosmo-sigtran-doc

Install libosmo-sigtran-doc 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 libosmo-sigtran-doc using aptitude by running the following command:

sudo aptitude -y install libosmo-sigtran-doc

How To Uninstall libosmo-sigtran-doc on Kali Linux

To uninstall only the libosmo-sigtran-doc package we can use the following command:

sudo apt-get remove libosmo-sigtran-doc

Uninstall libosmo-sigtran-doc And Its Dependencies

To uninstall libosmo-sigtran-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libosmo-sigtran-doc

Remove libosmo-sigtran-doc Configurations and Data

To remove libosmo-sigtran-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libosmo-sigtran-doc

Remove libosmo-sigtran-doc configuration, data, and all of its dependencies

We can use the following command to remove libosmo-sigtran-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libosmo-sigtran-doc

Dependencies

libosmo-sigtran-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install libosmo-sigtran-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.