autopsy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
autopsy: command not found
or when using sudo you get the following error message
sudo: autopsy: command not found
Solutions to autopsy: command not found
How To Fix autopsy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu autopsy is provided by autopsy package.
autopsy is:
The Autopsy Forensic Browser is a graphical interface to the command line digital forensic analysis tools in The Sleuth Kit. Together, The Sleuth Kit and Autopsy provide many of the same features as commercial digital forensics tools for the analysis of Windows and UNIX file systems (NTFS, FAT, FFS, EXT2FS, and EXT3FS).
To fix this problem, we can install more using the command below.
sudo apt-get -y install autopsy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install autopsy.
sudo apt -y install autopsy
Or if you have aptitude installed you can use the following command.
sudo aptitude install autopsy
Summary
In this tutorial we learn how to fix autopsy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.