tudu command not found
In this troubleshooting guide we learn how to fix tudu command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
tudu: command not found
or when using sudo you get the following error message
sudo: tudu: command not found
Solutions to tudu: command not found
How To Fix tudu: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tudu is provided by tudu package.
tudu is:
ToDo list manager in ncurses, with hierarchical representation of the tasks. Each task has:
- Title
- Long text description
- Deadline (tudu warns you when the date is approaching)
- Categories
- Priorities
To fix this problem, we can install more using the command below.
sudo apt-get -y install tudu
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tudu.
sudo apt -y install tudu
Or if you have aptitude installed you can use the following command.
sudo aptitude install tudu
Summary
In this tutorial we learn how to fix tudu command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.