gtimer command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gtimer: command not found
or when using sudo you get the following error message
sudo: gtimer: command not found
Solutions to gtimer: command not found
How To Fix gtimer: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gtimer is provided by gtimer package.
gtimer is:
A graphical program that tracks how your time is spent. Maintains a simple list of tasks, each of which can belong to a project, and allows you to track time in each. Multiple clocks can run simultaneously, annotations can be added to a day’s time, and reports can be generated in either HTML or text. If GTimer detects that you’re idle, you are given the option of subtracting off the time you spent idle when you return.
Compared to other time tracking applications, GTimer is graphical without depending on a desktop environment and aims for simplicity rather than attempting to be a full-fledged project tracking and billing application.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gtimer
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gtimer.
sudo apt -y install gtimer
Or if you have aptitude installed you can use the following command.
sudo aptitude install gtimer
Summary
In this tutorial we learn how to fix gtimer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.