How To Install htcondor-doc on Ubuntu 18.04

In this tutorial we learn how to install htcondor-doc on Ubuntu 18.04. htcondor-doc is distributed workload management system - documentation

Introduction

In this tutorial we learn how to install htcondor-doc on Ubuntu 18.04.

What is htcondor-doc

htcondor-doc 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 HTCondor’s documentation in HTML and PDF format, as well as configuration and other examples.

There are three methods to install htcondor-doc on Ubuntu 18.04. 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-doc 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-doc using apt-get by running the following command:

sudo apt-get -y install htcondor-doc

Install htcondor-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install htcondor-doc using apt by running the following command:

sudo apt -y install htcondor-doc

Install htcondor-doc 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install htcondor-doc using aptitude by running the following command:

sudo aptitude -y install htcondor-doc

How To Uninstall htcondor-doc on Ubuntu 18.04

To uninstall only the htcondor-doc package we can use the following command:

sudo apt-get remove htcondor-doc

Uninstall htcondor-doc And Its Dependencies

To uninstall htcondor-doc and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove htcondor-doc

Remove htcondor-doc Configurations and Data

To remove htcondor-doc configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge htcondor-doc

Remove htcondor-doc configuration, data, and all of its dependencies

We can use the following command to remove htcondor-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge htcondor-doc

References

Summary

In this tutorial we learn how to install htcondor-doc package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.