logtool command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
logtool: command not found
or when using sudo you get the following error message
sudo: logtool: command not found
Solutions to logtool: command not found
How To Fix logtool: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu logtool is provided by logtool package.
logtool is:
logtool is a syslog-style logfile parser and report-generator, capable of producing ANSI, ASCII, CSV (for spreadsheets), HTML or just raw output.
It’s very handy in generating nightly reports and in online monitoring of logfile activity.
To fix this problem, we can install more using the command below.
sudo apt-get -y install logtool
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install logtool.
sudo apt -y install logtool
Or if you have aptitude installed you can use the following command.
sudo aptitude install logtool
Summary
In this tutorial we learn how to fix logtool command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.