sge_shepherd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sge_shepherd: command not found
or when using sudo you get the following error message
sudo: sge_shepherd: command not found
Solutions to sge_shepherd: command not found
How To Fix sge_shepherd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sge_shepherd is provided by gridengine-exec package.
gridengine-exec 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 Grid Engine execution server.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gridengine-exec
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gridengine-exec.
sudo apt -y install gridengine-exec
Or if you have aptitude installed you can use the following command.
sudo aptitude install gridengine-exec
Summary
In this tutorial we learn how to fix sge_shepherd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.