bearing command not found

In this troubleshooting guide we learn how to fix bearing command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

bearing: command not found

or when using sudo you get the following error message

sudo: bearing: command not found

Solutions to bearing: command not found

How To Fix bearing: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu bearing is provided by splat package.

splat is:

SPLAT! is a Surface Path Length And Terrain analysis application written for Linux and Unix workstations. SPLAT! analyzes point-to-point terrestrial RF communication links, and provides information useful to communication system designers and site engineers.

To fix this problem, we can install more using the command below.

sudo apt-get -y install splat

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install splat.

sudo apt -y install splat

Or if you have aptitude installed you can use the following command.

sudo aptitude install splat

Summary

In this tutorial we learn how to fix bearing command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.