bmon command not found

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

Introduction

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

bmon: command not found

or when using sudo you get the following error message

sudo: bmon: command not found

Solutions to bmon: command not found

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

In Ubuntu bmon is provided by bmon package.

bmon is:

bmon is a commandline bandwidth monitor which supports various output methods including an interactive curses interface, lightweight HTML output but also simple ASCII output.

Statistics may be distributed over a network using multicast or unicast and collected at some point to generate a summary of statistics for a set of nodes.

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

sudo apt-get -y install bmon

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

You can also use apt command to install bmon.

sudo apt -y install bmon

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

sudo aptitude install bmon

Summary

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