How To Install htcondor-dbg on Ubuntu 18.04

In this tutorial we learn how to install htcondor-dbg on Ubuntu 18.04. htcondor-dbg is distributed workload management system - debugging symbols

Introduction

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

What is htcondor-dbg

htcondor-dbg 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 the debugging symbols for HTCondor.

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

sudo apt-get -y install htcondor-dbg

Install htcondor-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install htcondor-dbg

Install htcondor-dbg 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-dbg using aptitude by running the following command:

sudo aptitude -y install htcondor-dbg

How To Uninstall htcondor-dbg on Ubuntu 18.04

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

sudo apt-get remove htcondor-dbg

Uninstall htcondor-dbg And Its Dependencies

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

sudo apt-get -y autoremove htcondor-dbg

Remove htcondor-dbg Configurations and Data

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

sudo apt-get -y purge htcondor-dbg

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

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

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

References

Summary

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