moprc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
moprc: command not found
or when using sudo you get the following error message
sudo: moprc: command not found
Solutions to moprc: command not found
How To Fix moprc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu moprc 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 moprc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.