bam command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bam: command not found
or when using sudo you get the following error message
sudo: bam: command not found
Solutions to bam: command not found
How To Fix bam: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bam is provided by bam package.
bam is:
Bam uses Lua to describe the build process. It’s takes its inspiration for the script files from scons. While scons focuses on being 100% correct when building, bam makes a few sacrifices to acquire fast full and incremental build times.
To fix this problem, we can install more using the command below.
sudo apt-get -y install bam
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bam.
sudo apt -y install bam
Or if you have aptitude installed you can use the following command.
sudo aptitude install bam
Summary
In this tutorial we learn how to fix bam command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.