qmon command not found

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

Introduction

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

qmon: command not found

or when using sudo you get the following error message

sudo: qmon: command not found

Solutions to qmon: command not found

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

In Ubuntu qmon is provided by gridengine-qmon package.

gridengine-qmon is:

Grid Engine is software that facilitates “distributed resource management” (DRM). Far more than just simple load-balancing tools or batch scheduling mechanisms, DRM software typically provides the following key features across large sets of distributed resources:

  • Policy based allocation of distributed resources (CPU time, software licenses, etc.)
  • Batch queuing & scheduling
  • Support diverse server hardware, OS and architectures
  • Load balancing & remote job execution
  • Detailed job accounting statistics
  • Fine-grained user specifiable resources
  • Suspend/resume/migrate jobs
  • Tools for reporting Job/Host/Cluster status
  • Job Arrays
  • Integration & control of parallel jobs

This package contains the graphical Grid Engine administration frontend.

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

sudo apt-get -y install gridengine-qmon

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

You can also use apt command to install gridengine-qmon.

sudo apt -y install gridengine-qmon

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

sudo aptitude install gridengine-qmon

Summary

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