bosh command not found

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

Introduction

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

bosh: command not found

or when using sudo you get the following error message

sudo: bosh: command not found

Solutions to bosh: command not found

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

In Ubuntu bosh is provided by bosh package.

bosh is:

bosh stands for browsable output shell. This is a bit of a misnomer because it isn’t really a shell. What is does is store the output of a specified program in a buffer, and provides a simple curses interface to browse this buffer. Actions can be configured which can make use of the contents of the currently selected line.

Commands and actions are stored in bosh configuration files. These can include shebang line (#!/usr/bin/bosh) so that the configuration can just be run from the command-line.

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

sudo apt-get -y install bosh

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

You can also use apt command to install bosh.

sudo apt -y install bosh

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

sudo aptitude install bosh

Summary

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