ITGRecv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ITGRecv: command not found
or when using sudo you get the following error message
sudo: ITGRecv: command not found
Solutions to ITGRecv: command not found
How To Fix ITGRecv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ITGRecv is provided by d-itg package.
d-itg is:
D-ITG (Distributed Internet Traffic Generator) is a platform capable to produce traffic at packet level accurately replicating appropriate stochastic processes for both IDT (Inter Departure Time) and PS (Packet Size) random variables (exponential, uniform, cauchy, normal, pareto, …). D-ITG supports both IPv4 and IPv6 traffic generation and it is capable to generate traffic at network, transport, and application layer. We believe that D-ITG shows interesting properties when compared to other traffic generators.
To fix this problem, we can install more using the command below.
sudo apt-get -y install d-itg
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install d-itg.
sudo apt -y install d-itg
Or if you have aptitude installed you can use the following command.
sudo aptitude install d-itg
Summary
In this tutorial we learn how to fix ITGRecv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.