mbw command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mbw: command not found
or when using sudo you get the following error message
sudo: mbw: command not found
Solutions to mbw: command not found
How To Fix mbw: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mbw is provided by mbw package.
mbw is:
MBW determines the “copy” memory bandwidth available to userspace programs. Its simplistic approach models that of real applications. It is not tuned to extremes and it is not aware of hardware architecture, just like your average software package.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mbw
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mbw.
sudo apt -y install mbw
Or if you have aptitude installed you can use the following command.
sudo aptitude install mbw
Summary
In this tutorial we learn how to fix mbw command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.