osmo-hnbgw command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
osmo-hnbgw: command not found
or when using sudo you get the following error message
sudo: osmo-hnbgw: command not found
Solutions to osmo-hnbgw: command not found
How To Fix osmo-hnbgw: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu osmo-hnbgw is provided by osmo-hnbgw package.
osmo-hnbgw is:
An Open Source implenentation of a HNB-GW (HomeNodeB-Gateway), implementing the Iuh, IuCS and IuPS interfaces. It aggregates the Iuh links from femtocells (hNodeBs) and presents them as regular IuCS and IuPS towards MSC and SGSN (such as OsmoMSC and OsmoSGSN). It uses M3UA as signaling transport.
To fix this problem, we can install more using the command below.
sudo apt-get -y install osmo-hnbgw
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install osmo-hnbgw.
sudo apt -y install osmo-hnbgw
Or if you have aptitude installed you can use the following command.
sudo aptitude install osmo-hnbgw
Summary
In this tutorial we learn how to fix osmo-hnbgw command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.