osmo-sgsn command not found
In this troubleshooting guide we learn how to fix osmo-sgsn command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
osmo-sgsn: command not found
or when using sudo you get the following error message
sudo: osmo-sgsn: command not found
Solutions to osmo-sgsn: command not found
How To Fix osmo-sgsn: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu osmo-sgsn is provided by osmo-sgsn package.
osmo-sgsn is:
For setting up a 2G network with data network support, this package is needed
The SGSN implements
- the Gb interface to the BSS’s (like the OsmoPCU or an ip.access nanoBTS)
- the Gp interface with its GTP protocol to one or more Gateway GPRS Support Node (GGSN) like OsmoGGSN.
- the IuPS interface with its RANAP protocol to onre or more RNCs or HNB-GWs like OsmoHNBGW
- the GSUP Interface/Protocol towards OsmoHLR
To fix this problem, we can install more using the command below.
sudo apt-get -y install osmo-sgsn
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install osmo-sgsn.
sudo apt -y install osmo-sgsn
Or if you have aptitude installed you can use the following command.
sudo aptitude install osmo-sgsn
Summary
In this tutorial we learn how to fix osmo-sgsn command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.