How To Install avldrums.lv2-soundfont on Ubuntu 22.04
Introduction
In this tutorial we learn how to install avldrums.lv2-soundfont on Ubuntu 22.04.
What is avldrums.lv2-soundfont
avldrums.lv2-soundfont is:
avldrums.lv2 is a drum sample player plugin dedicated to Glen MacArthur’s AVLdrums. This self-contained plugin provides a convenient way to rapidly sequence and mix midi-drums.
AVLdrums comes as two separate drumkits: Black Pearl and Red Zeppelin. There are 5 velocity layers for each of the 28 kits pieces or drum-zones for both kits.
This package provides soundfonts files.
There are three methods to install avldrums.lv2-soundfont on Ubuntu 22.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 avldrums.lv2-soundfont Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install avldrums.lv2-soundfont using apt-get by running the following command:
sudo apt-get -y install avldrums.lv2-soundfont
Install avldrums.lv2-soundfont Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install avldrums.lv2-soundfont using apt by running the following command:
sudo apt -y install avldrums.lv2-soundfont
Install avldrums.lv2-soundfont 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 avldrums.lv2-soundfont using aptitude by running the following command:
sudo aptitude -y install avldrums.lv2-soundfont
How To Uninstall avldrums.lv2-soundfont on Ubuntu 22.04
To uninstall only the avldrums.lv2-soundfont package we can use the following command:
sudo apt-get remove avldrums.lv2-soundfont
Uninstall avldrums.lv2-soundfont And Its Dependencies
To uninstall avldrums.lv2-soundfont and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove avldrums.lv2-soundfont
Remove avldrums.lv2-soundfont Configurations and Data
To remove avldrums.lv2-soundfont configuration and data from Ubuntu 22.04 we can use the following command:
sudo apt-get -y purge avldrums.lv2-soundfont
Remove avldrums.lv2-soundfont configuration, data, and all of its dependencies
We can use the following command to remove avldrums.lv2-soundfont configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge avldrums.lv2-soundfont
References
Summary
In this tutorial we learn how to install avldrums.lv2-soundfont package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.