rolo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rolo: command not found
or when using sudo you get the following error message
sudo: rolo: command not found
Solutions to rolo: command not found
How To Fix rolo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rolo is provided by rolo package.
rolo is:
Rolo keeps track of your contacts and display them to you with a text-based menu. Rolo strives to be a well-constructed tool for complimenting text-based email programs-such as mutt. It utilizes the vCard version 3.0 format for storing its contacts and it interfaces with the end-user through a NCurses front-end.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rolo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rolo.
sudo apt -y install rolo
Or if you have aptitude installed you can use the following command.
sudo aptitude install rolo
Summary
In this tutorial we learn how to fix rolo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.