How To Install ladish on Debian 9
Introduction
In this tutorial we learn how to install ladish on Debian 9.
What is ladish
ladish 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. ladish doesn’t deal with any kind of audio or MIDI data itself; it just runs programs, deals with saving/loading (arbitrary) data and connects JACK ports together. It can also be used to move entire sessions between computers, or post sessions on the Internet for download.
There are three methods to install ladish on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install ladish Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install ladish using apt-get by running the following command:
sudo apt-get -y install ladish
Install ladish Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install ladish using apt by running the following command:
sudo apt -y install ladish
Install ladish 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 ladish using aptitude by running the following command:
sudo aptitude -y install ladish
How To Uninstall ladish on Debian 9
To uninstall only the ladish package we can use the following command:
sudo apt-get remove ladish
Uninstall ladish And Its Dependencies
To uninstall ladish and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove ladish
Remove ladish Configurations and Data
To remove ladish configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge ladish
Remove ladish configuration, data, and all of its dependencies
We can use the following command to remove ladish configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ladish
Dependencies
ladish have the following dependencies:
References
Summary
In this tutorial we learn how to install ladish package on Debian 9 using different package management tools: apt, apt-get and aptitude.