gtick command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gtick: command not found
or when using sudo you get the following error message
sudo: gtick: command not found
Solutions to gtick: command not found
How To Fix gtick: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gtick is provided by gtick package.
gtick is:
GTick is an acoustical and graphical metronome application (usually used to support musicians at practising an instrument). It features a scale from 30 to 250 beats per minute and 2/4, 3/4, 4/4 and other meters. You need a sound device for using it.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gtick
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gtick.
sudo apt -y install gtick
Or if you have aptitude installed you can use the following command.
sudo aptitude install gtick
Summary
In this tutorial we learn how to fix gtick command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.