ipsetcat command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ipsetcat: command not found
or when using sudo you get the following error message
sudo: ipsetcat: command not found
Solutions to ipsetcat: command not found
How To Fix ipsetcat: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ipsetcat is provided by libcorkipset-utils package.
libcorkipset-utils is:
The ipset library provides C data types for storing sets of IP addresses, and maps of IP addresses to integers. It supports both IPv4 and IPv6 addresses. It’s implemented using “Binary Decision Diagrams” (BDDs, https://en.wikipedia.org/wiki/Binary_decision_diagram), which (we hypothesize) makes it space efficient for large sets.
This package provides a few utility binaries for the library.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libcorkipset-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libcorkipset-utils.
sudo apt -y install libcorkipset-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install libcorkipset-utils
Summary
In this tutorial we learn how to fix ipsetcat command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.