lwatch command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lwatch: command not found
or when using sudo you get the following error message
sudo: lwatch: command not found
Solutions to lwatch: command not found
How To Fix lwatch: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lwatch is provided by lwatch package.
lwatch is:
Lwatch is a program to split syslog or syslog-ng messages with regexps (PCREs), colorize and display them in a way that important information can be seen at a glance. It is a small, useful tool for system administrators.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lwatch
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lwatch.
sudo apt -y install lwatch
Or if you have aptitude installed you can use the following command.
sudo aptitude install lwatch
Summary
In this tutorial we learn how to fix lwatch command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.