How To Install yagtd on Ubuntu 18.04

In this tutorial we learn how to install yagtd on Ubuntu 18.04. yagtd is utility to help organize your to-do lists

Introduction

In this tutorial we learn how to install yagtd on Ubuntu 18.04.

What is yagtd

yagtd is:

yagtd is a simple command-line utility based on the Getting Things Done methodology. It is designed to make the management of your TO-DO list quick and easy.

There are three methods to install yagtd 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 yagtd Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

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

sudo apt-get -y install yagtd

Install yagtd Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install yagtd using apt by running the following command:

sudo apt -y install yagtd

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

sudo aptitude -y install yagtd

How To Uninstall yagtd on Ubuntu 18.04

To uninstall only the yagtd package we can use the following command:

sudo apt-get remove yagtd

Uninstall yagtd And Its Dependencies

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

sudo apt-get -y autoremove yagtd

Remove yagtd Configurations and Data

To remove yagtd configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge yagtd

Remove yagtd configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge yagtd

References

Summary

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