scram command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
scram: command not found
or when using sudo you get the following error message
sudo: scram: command not found
Solutions to scram: command not found
How To Fix scram: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu scram is provided by scram package.
scram is:
A command line probabilistic risk analysis tool capable of performing event tree analysis, static fault tree analysis, analysis with common cause failure models, probability calculations with importance analysis, and uncertainty analysis with Monte Carlo simulations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install scram
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install scram.
sudo apt -y install scram
Or if you have aptitude installed you can use the following command.
sudo aptitude install scram
Summary
In this tutorial we learn how to fix scram command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.