prelude-lml command not found

In this troubleshooting guide we learn how to fix prelude-lml command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

prelude-lml: command not found

or when using sudo you get the following error message

sudo: prelude-lml: command not found

Solutions to prelude-lml: command not found

How To Fix prelude-lml: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu prelude-lml is provided by prelude-lml package.

prelude-lml is:

The Prelude Log Monitoring Lackey (LML) is the host-based sensor program part of the Prelude SIEM suite. It can act as a centralized log collector for local or remote systems, or as a simple log analyzer (such as swatch). It can run as a network server listening on a syslog port or analyze log files. It supports logfiles in the BSD syslog format and is able to analyze any logfile by using the PCRE library. It can apply logfile-specific analysis through plugins such as PAX. It can send an alert to the Prelude Manager when a suspicious log entry is detected.

To fix this problem, we can install more using the command below.

sudo apt-get -y install prelude-lml

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install prelude-lml.

sudo apt -y install prelude-lml

Or if you have aptitude installed you can use the following command.

sudo aptitude install prelude-lml

Summary

In this tutorial we learn how to fix prelude-lml command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.