hashcheck command not found

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

Introduction

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

hashcheck: command not found

or when using sudo you get the following error message

sudo: hashcheck: command not found

Solutions to hashcheck: command not found

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

In Ubuntu hashcheck is provided by hashcheck package.

hashcheck is:

Provides a graphical interface to verify a live mounted ISO image. The image is expected to be mounted under /lib/live/mount/medium

It is useful as part of a live environment

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

sudo apt-get -y install hashcheck

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

You can also use apt command to install hashcheck.

sudo apt -y install hashcheck

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

sudo aptitude install hashcheck

Summary

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