nfprofile command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nfprofile: command not found
or when using sudo you get the following error message
sudo: nfprofile: command not found
Solutions to nfprofile: command not found
How To Fix nfprofile: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nfprofile is provided by nfdump package.
nfdump is:
Collects and processes netflow data with command line tools. Collected netflow data is stored in filesystem and is limited by available storage space only. Tools are optimized for speed and filtering. nfcapd reads netflow v5, v7, v9 and IPFIX flows transparently. You need one nfcapd process for each netflow stream.
To fix this problem, we can install more using the command below.
sudo apt-get -y install nfdump
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install nfdump.
sudo apt -y install nfdump
Or if you have aptitude installed you can use the following command.
sudo aptitude install nfdump
Summary
In this tutorial we learn how to fix nfprofile command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.