How To Install htcondor-dev on Debian 10
Introduction
In this tutorial we learn how to install htcondor-dev
on Debian 10.
What is htcondor-dev
htcondor-dev is:
Like other full-featured batch systems, HTCondor provides a job queueing mechanism, scheduling policy, priority scheme, resource monitoring, and resource management. Users submit their serial or parallel jobs to HTCondor; HTCondor places them into a queue. It chooses when and where to run the jobs based upon a policy, carefully monitors their progress, and ultimately informs the user upon completion.
Unlike more traditional batch queueing systems, HTCondor can also effectively harness wasted CPU power from otherwise idle desktop workstations. HTCondor does not require a shared file system across machines - if no shared file system is available, HTCondor can transfer the job’s data files on behalf of the user.
This package provides headers and libraries for development of HTCondor add-ons.
There are three methods to install htcondor-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 htcondor-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 htcondor-dev
using apt-get
by running the following command:
sudo apt-get -y install htcondor-dev
Install htcondor-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install htcondor-dev
using apt
by running the following command:
sudo apt -y install htcondor-dev
Install htcondor-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 htcondor-dev
using aptitude
by running the following command:
sudo aptitude -y install htcondor-dev
How To Uninstall htcondor-dev on Debian 10
To uninstall only the htcondor-dev
package we can use the following command:
sudo apt-get remove htcondor-dev
Uninstall htcondor-dev And Its Dependencies
To uninstall htcondor-dev
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove htcondor-dev
Remove htcondor-dev Configurations and Data
To remove htcondor-dev
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge htcondor-dev
Remove htcondor-dev configuration, data, and all of its dependencies
We can use the following command to remove htcondor-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge htcondor-dev
Dependencies
htcondor-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install htcondor-dev
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.