How To Install gridengine-drmaa-dev on Debian 10
Introduction
In this tutorial we learn how to install gridengine-drmaa-dev
on Debian 10.
What is gridengine-drmaa-dev
gridengine-drmaa-dev is:
DRMAA (Distributed Resource Management Application API) is a specification developed by a working group in the Global Grid Forum (GGF). The intention is to provide an API specification for the submission and control of jobs to one or more Distributed Resource Management (DRM) systems.
This package contains the development files for the library which provides the Grid Engine implementation of the DRMAA specification.
There are three methods to install gridengine-drmaa-dev
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install gridengine-drmaa-dev Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install gridengine-drmaa-dev
using apt-get
by running the following command:
sudo apt-get -y install gridengine-drmaa-dev
Install gridengine-drmaa-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install gridengine-drmaa-dev
using apt
by running the following command:
sudo apt -y install gridengine-drmaa-dev
Install gridengine-drmaa-dev Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install gridengine-drmaa-dev
using aptitude
by running the following command:
sudo aptitude -y install gridengine-drmaa-dev
How To Uninstall gridengine-drmaa-dev on Debian 10
To uninstall only the gridengine-drmaa-dev
package we can use the following command:
sudo apt-get remove gridengine-drmaa-dev
Uninstall gridengine-drmaa-dev And Its Dependencies
To uninstall gridengine-drmaa-dev
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove gridengine-drmaa-dev
Remove gridengine-drmaa-dev Configurations and Data
To remove gridengine-drmaa-dev
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge gridengine-drmaa-dev
Remove gridengine-drmaa-dev configuration, data, and all of its dependencies
We can use the following command to remove gridengine-drmaa-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gridengine-drmaa-dev
Dependencies
gridengine-drmaa-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install gridengine-drmaa-dev
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.