stenoread command not found

In this troubleshooting guide we learn how to fix stenoread command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

stenoread: command not found

or when using sudo you get the following error message

sudo: stenoread: command not found

Solutions to stenoread: command not found

How To Fix stenoread: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu stenoread 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 stenoread command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.