sge-disable-submits command not found

In this troubleshooting guide we learn how to fix sge-disable-submits command not found error message

Introduction

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

sge-disable-submits: command not found

or when using sudo you get the following error message

sudo: sge-disable-submits: command not found

Solutions to sge-disable-submits: command not found

How To Fix sge-disable-submits: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu sge-disable-submits is provided by gridengine-common package.

gridengine-common 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 required shared files and the basic configuration.

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

sudo apt-get -y install gridengine-common

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

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

sudo apt -y install gridengine-common

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

sudo aptitude install gridengine-common

Summary

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