ssshtest command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ssshtest: command not found
or when using sudo you get the following error message
sudo: ssshtest: command not found
Solutions to ssshtest: command not found
How To Fix ssshtest: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ssshtest is provided by ssshtest package.
ssshtest is:
ssshtest is a series of bash functions which help run bash tests in a easy manner. It has functions for checking equality, determine if a string is in stdout, not in stdout, in stderr and many more.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ssshtest
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ssshtest.
sudo apt -y install ssshtest
Or if you have aptitude installed you can use the following command.
sudo aptitude install ssshtest
Summary
In this tutorial we learn how to fix ssshtest command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.