asclock command not found

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

Introduction

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

asclock: command not found

or when using sudo you get the following error message

sudo: asclock: command not found

Solutions to asclock: command not found

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

In Ubuntu asclock is provided by asclock package.

asclock is:

This little application displays the time of the day (digital, either 12 or 24 hour format), and the date. It provides three alternatives: one suitable for low color systems, one with “real” NeXTStep colors, and the third one is somewhat in between.

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

sudo apt-get -y install asclock

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

You can also use apt command to install asclock.

sudo apt -y install asclock

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

sudo aptitude install asclock

Summary

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