lognormalizer command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lognormalizer: command not found
or when using sudo you get the following error message
sudo: lognormalizer: command not found
Solutions to lognormalizer: command not found
How To Fix lognormalizer: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lognormalizer is provided by liblognorm-utils package.
liblognorm-utils is:
Liblognorm is an event and log normalization library that is capable of real-time processing. It provides the capability to normalize events to a set of standard formats.
This package contains the lognormalizer tool.
To fix this problem, we can install more using the command below.
sudo apt-get -y install liblognorm-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install liblognorm-utils.
sudo apt -y install liblognorm-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install liblognorm-utils
Summary
In this tutorial we learn how to fix lognormalizer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.