How To Install gladish on Ubuntu 18.04

In this tutorial we learn how to install gladish on Ubuntu 18.04. gladish is graphical interface for LADI Session Handler

Introduction

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

What is gladish

gladish is:

LADI Session Handler or simply ladish is a session management system for JACK applications on GNU/Linux. Its aim is to allow you to have many different audio programs running at once, to save their setup, close them down and then easily reload the setup at some other time.

This package provides a graphical interface to ladish.

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

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

sudo apt-get update

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

sudo apt-get -y install gladish

Install gladish Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install gladish

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

sudo aptitude -y install gladish

How To Uninstall gladish on Ubuntu 18.04

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

sudo apt-get remove gladish

Uninstall gladish And Its Dependencies

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

sudo apt-get -y autoremove gladish

Remove gladish Configurations and Data

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

sudo apt-get -y purge gladish

Remove gladish configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge gladish

References

Summary

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