balboa command not found

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

Introduction

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

balboa: command not found

or when using sudo you get the following error message

sudo: balboa: command not found

Solutions to balboa: command not found

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

In Ubuntu balboa is provided by balboa package.

balboa is:

balboa is the BAsic Little Book Of Answers. It consumes and indexes observations from passive DNS collection, providing a GraphQL interface to access the aggregated contents of the observations database.

This package contains the frontend, which handles user query interaction and input parsing. It requires a backend to store the consumed observations.

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

sudo apt-get -y install balboa

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

You can also use apt command to install balboa.

sudo apt -y install balboa

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

sudo aptitude install balboa

Summary

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