llines command not found

In this troubleshooting guide we learn how to fix llines command not found error message

Introduction

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

llines: command not found

or when using sudo you get the following error message

sudo: llines: command not found

Solutions to llines: command not found

How To Fix llines: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu llines is provided by lifelines package.

lifelines is:

LifeLines is a genealogy program that runs on UNIX systems in text mode. It maintains genealogical records (persons, families, sources, events and others) in a database, and generates reports from those records.

There are no practical limits on the number of records that can be stored in a LifeLines database, nor on the amounts or kinds of data that can be kept in the records.

LifeLines does not contain built-in reports. Instead it provides a programming subsystem that you use to program your own reports and charts. Some standard report files are included in the lifelines-reports package.

The programming subsystem also lets you query your databases and process your data in any way. LifeLines uses the terminal independent features of UNIX to provide a screen and menu based user interface.

The program is able to read and write GEDCOM files, the de facto standard for genealogical data exchange.

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

sudo apt-get -y install lifelines

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

You can also use apt command to install lifelines.

sudo apt -y install lifelines

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

sudo aptitude install lifelines

Summary

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