sipgrep command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sipgrep: command not found
or when using sudo you get the following error message
sudo: sipgrep: command not found
Solutions to sipgrep: command not found
How To Fix sipgrep: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sipgrep is provided by sipgrep package.
sipgrep is:
Powerful pcap-aware tool command line tool to sniff, capture, display and troubleshoot SIP signaling over IP networks, allowing the user to specify extended regular expressions matching against SIP headers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sipgrep
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sipgrep.
sudo apt -y install sipgrep
Or if you have aptitude installed you can use the following command.
sudo aptitude install sipgrep
Summary
In this tutorial we learn how to fix sipgrep command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.