stressant command not found

In this troubleshooting guide we learn how to fix stressant command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

stressant: command not found

or when using sudo you get the following error message

sudo: stressant: command not found

Solutions to stressant: command not found

How To Fix stressant: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu stressant is provided by stressant package.

stressant is:

stressant is designed to run on new machines to make sure they will work reliably by testing various parts of the system (CPU, RAM, disk, network) by putting them under heavy load and try to detect failures.

As much as possible, stressant tries to reuse existing tools to perform the various tasks and aims to be run automatically.

To fix this problem, we can install more using the command below.

sudo apt-get -y install stressant

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install stressant.

sudo apt -y install stressant

Or if you have aptitude installed you can use the following command.

sudo aptitude install stressant

Summary

In this tutorial we learn how to fix stressant command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.