nstreams command not found

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

Introduction

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

nstreams: command not found

or when using sudo you get the following error message

sudo: nstreams: command not found

Solutions to nstreams: command not found

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

In Ubuntu nstreams is provided by nstreams package.

nstreams is:

Nstreams is a utility designed to identify the IP streams that are occurring on a network from a non-user friendly tcpdump output of several megabytes. This is especially useful when you plan to install a firewall but if you do not know the nstreams that the network users are generating (http, real audio, and more…).

Nstreams can read the tcpdump output directly from stdin, or from a file. It can even generate the configuration file of your firewall.

To fix this problem, we can install more using the command below.

sudo apt-get -y install nstreams

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install nstreams.

sudo apt -y install nstreams

Or if you have aptitude installed you can use the following command.

sudo aptitude install nstreams

Summary

In this tutorial we learn how to fix nstreams command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.