stegosuite command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
stegosuite: command not found
or when using sudo you get the following error message
sudo: stegosuite: command not found
Solutions to stegosuite: command not found
How To Fix stegosuite: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu stegosuite is provided by stegosuite package.
stegosuite is:
Stegosuite is a graphical steganography tool to easily hide information in image files. It allows the embedding of text messages and multiple files of any type. In addition, the embedded data is encrypted using AES. Currently supported file types are BMP, GIF, JPG and PNG. Stegosuite is written in Java and utilizes the SWT toolkit for its interface.
To fix this problem, we can install more using the command below.
sudo apt-get -y install stegosuite
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install stegosuite.
sudo apt -y install stegosuite
Or if you have aptitude installed you can use the following command.
sudo aptitude install stegosuite
Summary
In this tutorial we learn how to fix stegosuite command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.