etm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
etm: command not found
or when using sudo you get the following error message
sudo: etm: command not found
Solutions to etm: command not found
How To Fix etm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu etm is provided by etm package.
etm is:
Manage events and tasks using simple text files etm is an acronym for event and task manager.
In contrast to most calendar/todo applications, creating items (events, tasks, and so forth) in etm does not require filling out fields in a form. Instead, items are created as free-form text entries using a simple, intuitive format and stored in plain text files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install etm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install etm.
sudo apt -y install etm
Or if you have aptitude installed you can use the following command.
sudo aptitude install etm
Summary
In this tutorial we learn how to fix etm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.