stenocurl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
stenocurl: command not found
or when using sudo you get the following error message
sudo: stenocurl: command not found
Solutions to stenocurl: command not found
How To Fix stenocurl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu stenocurl is provided by stenographer-client package.
stenographer-client 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.
This package contains a HTTP-based client.
To fix this problem, we can install more using the command below.
sudo apt-get -y install stenographer-client
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install stenographer-client.
sudo apt -y install stenographer-client
Or if you have aptitude installed you can use the following command.
sudo aptitude install stenographer-client
Summary
In this tutorial we learn how to fix stenocurl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.