mac-robber command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mac-robber: command not found
or when using sudo you get the following error message
sudo: mac-robber: command not found
Solutions to mac-robber: command not found
How To Fix mac-robber: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mac-robber is provided by mac-robber package.
mac-robber is:
mac-robber is a digital investigation tool (digital forensics) that collects metadata from allocated files in a mounted filesystem. This is useful during incident response when analyzing a live system or when analyzing a dead system in a lab. The data can be used by the mactime tool in The Sleuth Kit (TSK or SleuthKit only) to make a timeline of file activity. The mac-robber tool is based on the grave-robber tool from TCT (The Coroners Toolkit).
mac-robber requires that the filesystem be mounted by the operating system, unlike the tools in The Sleuth Kit that process the filesystem themselves. Therefore, mac-robber will not collect data from deleted files or files that have been hidden by rootkits. mac-robber will also modify the Access times on directories that are mounted with write permissions.
mac-robber is useful when dealing with a filesystem that is not supported by The Sleuth Kit or other filesystem analysis tools. You can run mac-robber on an obscure, suspect UNIX filesystem that has been mounted read-only on a trusted system.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mac-robber
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mac-robber.
sudo apt -y install mac-robber
Or if you have aptitude installed you can use the following command.
sudo aptitude install mac-robber
Summary
In this tutorial we learn how to fix mac-robber command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.