meas_json command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
meas_json: command not found
or when using sudo you get the following error message
sudo: meas_json: command not found
Solutions to meas_json: command not found
How To Fix meas_json: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu meas_json is provided by osmo-bsc-meas-utils package.
osmo-bsc-meas-utils is:
This package is part of osmo-bsc.
It converts measurement report feed into JSON feed printed to stdout. Each measurement report is printed as a separate JSON root entry. All measurement reports are separated by a new line.
To fix this problem, we can install more using the command below.
sudo apt-get -y install osmo-bsc-meas-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install osmo-bsc-meas-utils.
sudo apt -y install osmo-bsc-meas-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install osmo-bsc-meas-utils
Summary
In this tutorial we learn how to fix meas_json command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.