conntrack command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
conntrack: command not found
or when using sudo you get the following error message
sudo: conntrack: command not found
Solutions to conntrack: command not found
How To Fix conntrack: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu conntrack is provided by conntrack package.
conntrack is:
conntrack is a userspace command line program targeted at system administrators. It enables them to view and manage the in-kernel connection tracking state table.
To fix this problem, we can install more using the command below.
sudo apt-get -y install conntrack
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install conntrack.
sudo apt -y install conntrack
Or if you have aptitude installed you can use the following command.
sudo aptitude install conntrack
Summary
In this tutorial we learn how to fix conntrack command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.