nuttcp command not found

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

Introduction

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

nuttcp: command not found

or when using sudo you get the following error message

sudo: nuttcp: command not found

Solutions to nuttcp: command not found

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

In Ubuntu nuttcp is provided by nuttcp package.

nuttcp is:

nuttcp is a network performance measurement tool intended for use by network and system managers. Its most basic usage is to determine the raw TCP (or UDP) network layer throughput by transferring memory buffers from a source system across an interconnecting network to a destination system, either transferring data for a specified time interval, or alternatively transferring a specified number of bytes.

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

sudo apt-get -y install nuttcp

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

You can also use apt command to install nuttcp.

sudo apt -y install nuttcp

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

sudo aptitude install nuttcp

Summary

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