taglog command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
taglog: command not found
or when using sudo you get the following error message
sudo: taglog: command not found
Solutions to taglog: command not found
How To Fix taglog: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu taglog is provided by taglog package.
taglog is:
Taglog is designed for anyone who spends most of their day sitting at a computer, working on various projects. You can make notes about what you do, as you go along, associating them with the projects you work on. At the end of the week you can produce a report of how your time was spent, broken down by project for booking purposes. You can view previous entries, by date, or by project. You can enter the actions you intend to take, associate them with a project, and mark them as active, or complete.
To fix this problem, we can install more using the command below.
sudo apt-get -y install taglog
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install taglog.
sudo apt -y install taglog
Or if you have aptitude installed you can use the following command.
sudo aptitude install taglog
Summary
In this tutorial we learn how to fix taglog command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.