slurm command not found
In this troubleshooting guide we learn how to fix slurm command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
slurm: command not found
or when using sudo you get the following error message
sudo: slurm: command not found
Solutions to slurm: command not found
How To Fix slurm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu slurm is provided by slurm package.
slurm is:
Slurm has the following features:
- realtime traffic statistics divided into incoming and outgoing
- optional combined view
- can monitor any kind of network interface
- shows detailed statistics about the interface.
- it’s themeable
To fix this problem, we can install more using the command below.
sudo apt-get -y install slurm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install slurm.
sudo apt -y install slurm
Or if you have aptitude installed you can use the following command.
sudo aptitude install slurm
Summary
In this tutorial we learn how to fix slurm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.