stenographer command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
stenographer: command not found
or when using sudo you get the following error message
sudo: stenographer: command not found
Solutions to stenographer: command not found
How To Fix stenographer: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu stenographer is provided by stenographer package.
stenographer is:
Stenographer is a full-packet-capture utility for buffering packets to disk for intrusion detection and incident response purposes. It provides a high-performance implementation of NIC-to-disk packet writing, handles deleting those files as disk fills up, and provides methods for reading back specific sets of packets quickly and easily.
To fix this problem, we can install more using the command below.
sudo apt-get -y install stenographer
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install stenographer.
sudo apt -y install stenographer
Or if you have aptitude installed you can use the following command.
sudo aptitude install stenographer
Summary
In this tutorial we learn how to fix stenographer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.