sendip command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sendip: command not found
or when using sudo you get the following error message
sudo: sendip: command not found
Solutions to sendip: command not found
How To Fix sendip: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sendip is provided by sendip package.
sendip is:
SendIP has a large number of command line options to specify the content of every header of a RIP, TCP, UDP, ICMP or raw IPv4 and IPv6 packet. It also allows any data to be added to the packet. Checksums can be calculated automatically, but if you wish to send out wrong checksums, that is supported too.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sendip
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sendip.
sudo apt -y install sendip
Or if you have aptitude installed you can use the following command.
sudo aptitude install sendip
Summary
In this tutorial we learn how to fix sendip command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.