sunclock command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sunclock: command not found
or when using sudo you get the following error message
sudo: sunclock: command not found
Solutions to sunclock: command not found
How To Fix sunclock: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sunclock is provided by sunclock package.
sunclock is:
sunclock is an X11 application that displays a map of the Earth and indicates the illuminated portion of the globe by drawing sunlit areas dark on light, night areas as light on dark. In addition to providing local time for the default timezone, it also displays GMT time, legal and solar time of major cities, their latitude and longitude, and the mutual distances of arbitrary locations on Earth. Sunclock can display meridians, parallels, tropics and arctic circles. It has builtin functions that accelerate the speed of time and show the evolution of seasons.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sunclock
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sunclock.
sudo apt -y install sunclock
Or if you have aptitude installed you can use the following command.
sudo aptitude install sunclock
Summary
In this tutorial we learn how to fix sunclock command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.