osmo-stp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
osmo-stp: command not found
or when using sudo you get the following error message
sudo: osmo-stp: command not found
Solutions to osmo-stp: command not found
How To Fix osmo-stp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu osmo-stp is provided by osmo-stp package.
osmo-stp is:
This is the Osmocom (Open Source Mobile Communications) implementation of a Signaling Transfer Point (STP) for SS7/SIGTRAN telecommunication networks. At this point it is a very minimal implementation, missing lots of the functionality usually present in a STP, such as Global Title Routing, Global Title Translation.
To fix this problem, we can install more using the command below.
sudo apt-get -y install osmo-stp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install osmo-stp.
sudo apt -y install osmo-stp
Or if you have aptitude installed you can use the following command.
sudo aptitude install osmo-stp
Summary
In this tutorial we learn how to fix osmo-stp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.