icmpush command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
icmpush: command not found
or when using sudo you get the following error message
sudo: icmpush: command not found
Solutions to icmpush: command not found
How To Fix icmpush: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu icmpush is provided by icmpush package.
icmpush is:
icmpush is a tool that builds ICMP packets fully customized from command line.
It supports the following ICMP error types: Redirect, Source Quench, Time Exceeded, Destination Unreach and Parameter Problem.
And the following ICMP information types: Address Mask Request, Timestamp, Information Request, Echo Request, Router Solicitation and Router Advertisement.
To fix this problem, we can install more using the command below.
sudo apt-get -y install icmpush
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install icmpush.
sudo apt -y install icmpush
Or if you have aptitude installed you can use the following command.
sudo aptitude install icmpush
Summary
In this tutorial we learn how to fix icmpush command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.