whowatch command not found

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

Introduction

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

whowatch: command not found

or when using sudo you get the following error message

sudo: whowatch: command not found

Solutions to whowatch: command not found

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

In Ubuntu whowatch is provided by whowatch package.

whowatch is:

whowatch is a ncurses who-like utility that displays information about the users currently logged on to the machine, in real-time. Besides standard information (login name, tty, host, user’s process), the type of the connection (ie. telnet or ssh) is shown.

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

sudo apt-get -y install whowatch

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

You can also use apt command to install whowatch.

sudo apt -y install whowatch

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

sudo aptitude install whowatch

Summary

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