How To Install pegasus-wms-doc on Ubuntu 18.04

In this tutorial we learn how to install pegasus-wms-doc on Ubuntu 18.04. pegasus-wms-doc is Scientific workflow management system for HTCondor - documentation files

Introduction

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

What is pegasus-wms-doc

pegasus-wms-doc is:

The Pegasus project encompasses a set of technologies the help workflow-based applications execute in a number of different environments including desktops, campus clusters, grids, and now clouds. Scientific workflows allow users to easily express multi-step computations, for example retrieve data from a database, reformat the data, and run an analysis. Once an application is formalized as a workflow the Pegasus Workflow Management Service can map it onto available compute resources and execute the steps in appropriate order.

This package contains the user documentation.

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

sudo apt-get -y install pegasus-wms-doc

Install pegasus-wms-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install pegasus-wms-doc

Install pegasus-wms-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 pegasus-wms-doc using aptitude by running the following command:

sudo aptitude -y install pegasus-wms-doc

How To Uninstall pegasus-wms-doc on Ubuntu 18.04

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

sudo apt-get remove pegasus-wms-doc

Uninstall pegasus-wms-doc And Its Dependencies

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

sudo apt-get -y autoremove pegasus-wms-doc

Remove pegasus-wms-doc Configurations and Data

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

sudo apt-get -y purge pegasus-wms-doc

Remove pegasus-wms-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge pegasus-wms-doc

References

Summary

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