llogin command not found

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

Introduction

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

llogin: command not found

or when using sudo you get the following error message

sudo: llogin: command not found

Solutions to llogin: command not found

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

In Ubuntu llogin is provided by latd package.

latd is:

This is a server for DEC LAT. It allows users to log in to the Linux system from a LAT terminal server and also the creation of “reverse” LAT ports on the system that connect to other LAT services on the network.

There is also an llogin utility that allows users to login to remote LAT services and a moprc utility for managing terminal servers remotely.

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

sudo apt-get -y install latd

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

You can also use apt command to install latd.

sudo apt -y install latd

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

sudo aptitude install latd

Summary

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