bw command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bw: command not found
or when using sudo you get the following error message
sudo: bw: command not found
Solutions to bw: command not found
How To Fix bw: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bw is provided by bundlewrap package.
bundlewrap is:
By allowing for easy and low-overhead config management, BundleWrap fills the gap between complex deployments using Chef or Puppet and old school system administration over SSH.
While most other config management systems rely on a client-server architecture, BundleWrap works off a repository cloned to your local machine.
It then automates the process of SSHing into your servers and making sure everything is configured the way it’s supposed to be. You won’t have to install anything on managed servers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install bundlewrap
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bundlewrap.
sudo apt -y install bundlewrap
Or if you have aptitude installed you can use the following command.
sudo aptitude install bundlewrap
Summary
In this tutorial we learn how to fix bw command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.