osmo-msc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
osmo-msc: command not found
or when using sudo you get the following error message
sudo: osmo-msc: command not found
Solutions to osmo-msc: command not found
How To Fix osmo-msc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu osmo-msc is provided by osmo-msc package.
osmo-msc is:
The Mobile Switching Center (MSC) is the heart of 2G/3G circuit-switched services. It terminates the A-interface links from the Base Station Controllers (BSC) and handles the MM and CC sub-layers of the Layer 3 protocol from the phones (MS).
This Osmocom implementation of the MSC handles A interfaces via 3GPP AoIP in an ASP role. It furthermore implements IETF MGCP against an external media gateway, such as OsmoMGW. It does not implement MAP towards a HLR, but the much simpler Osmocom GSUP protocol, which can be translated to MAP if needed.
To fix this problem, we can install more using the command below.
sudo apt-get -y install osmo-msc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install osmo-msc.
sudo apt -y install osmo-msc
Or if you have aptitude installed you can use the following command.
sudo aptitude install osmo-msc
Summary
In this tutorial we learn how to fix osmo-msc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.