How To Install gladish on Debian 10
Introduction
In this tutorial we learn how to install gladish on Debian 10.
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 Debian 10. 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 Debian. 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 Debian 10
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 Debian 10, we can use the command below:
sudo apt-get -y autoremove gladish
Remove gladish Configurations and Data
To remove gladish configuration and data from Debian 10 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
Dependencies
gladish have the following dependencies:
- ladish
- libart-2.0-2
- libatk1.0-0
- libatkmm-1.6-1v5
- libc6
- libcairo2
- libcairomm-1.0-1v5
- libdbus-1-3
- libdbus-glib-1-2
- libflowcanvas5v5
- libfontconfig1
- libfreetype6
- libgcc1
References
Summary
In this tutorial we learn how to install gladish package on Debian 10 using different package management tools: apt, apt-get and aptitude.