tzwatch command not found

In this troubleshooting guide we learn how to fix tzwatch command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

tzwatch: command not found

or when using sudo you get the following error message

sudo: tzwatch: command not found

Solutions to tzwatch: command not found

How To Fix tzwatch: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu tzwatch is provided by tzwatch package.

tzwatch is:

This shell script displays the time and date of time zones specified by the user. The time zones may be entered by hand in TZ format or chosen from a list prepared from /usr/share/zoneinfo/zone.tab. The zone list is kept in a format consistent with the GTK+ application gworldclock.

To fix this problem, we can install more using the command below.

sudo apt-get -y install tzwatch

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install tzwatch.

sudo apt -y install tzwatch

Or if you have aptitude installed you can use the following command.

sudo aptitude install tzwatch

Summary

In this tutorial we learn how to fix tzwatch command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.