How To Install invada-studio-plugins-ladspa on Ubuntu 18.04

In this tutorial we learn how to install invada-studio-plugins-ladspa on Ubuntu 18.04. invada-studio-plugins-ladspa is Invada Studio Plugins - a set of LADSPA audio plugins

Introduction

In this tutorial we learn how to install invada-studio-plugins-ladspa on Ubuntu 18.04.

What is invada-studio-plugins-ladspa

invada-studio-plugins-ladspa is:

Utility Plugins Input Module (Stereo only) Alter gain, balance, width, phase on a stereo signal

Filter Plugins Low Pass (Mono and Stereo version) High Pass (Mono and Stereo version) Gentle high pass and low pass filters

Simulation Plugins Tube - (Mono and Stereo version) Valve warmth/distortion simulation

Dynamics Plugins Compressor - (Mono and Stereo version) Peak/RMS soft-clipping compressor

Reverb Plugins ER Reverb - (Mono and Stereo summing In) Early reflection based reverb.

There are three methods to install invada-studio-plugins-ladspa 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 invada-studio-plugins-ladspa Using apt-get

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

sudo apt-get update

After updating apt database, We can install invada-studio-plugins-ladspa using apt-get by running the following command:

sudo apt-get -y install invada-studio-plugins-ladspa

Install invada-studio-plugins-ladspa Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install invada-studio-plugins-ladspa using apt by running the following command:

sudo apt -y install invada-studio-plugins-ladspa

Install invada-studio-plugins-ladspa 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 invada-studio-plugins-ladspa using aptitude by running the following command:

sudo aptitude -y install invada-studio-plugins-ladspa

How To Uninstall invada-studio-plugins-ladspa on Ubuntu 18.04

To uninstall only the invada-studio-plugins-ladspa package we can use the following command:

sudo apt-get remove invada-studio-plugins-ladspa

Uninstall invada-studio-plugins-ladspa And Its Dependencies

To uninstall invada-studio-plugins-ladspa and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove invada-studio-plugins-ladspa

Remove invada-studio-plugins-ladspa Configurations and Data

To remove invada-studio-plugins-ladspa configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge invada-studio-plugins-ladspa

Remove invada-studio-plugins-ladspa configuration, data, and all of its dependencies

We can use the following command to remove invada-studio-plugins-ladspa configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge invada-studio-plugins-ladspa

References

Summary

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