How To Install avldrums.lv2-soundfont on Kali Linux
Introduction
In this tutorial we learn how to install avldrums.lv2-soundfont on Kali Linux.
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 Kali Linux. 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 updateAfter updating apt database, We can install avldrums.lv2-soundfont using apt-get by running the following command:
sudo apt-get -y install avldrums.lv2-soundfontInstall avldrums.lv2-soundfont Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install avldrums.lv2-soundfont using apt by running the following command:
sudo apt -y install avldrums.lv2-soundfontInstall avldrums.lv2-soundfont Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install avldrums.lv2-soundfont using aptitude by running the following command:
sudo aptitude -y install avldrums.lv2-soundfontHow To Uninstall avldrums.lv2-soundfont on Kali Linux
To uninstall only the avldrums.lv2-soundfont package we can use the following command:
sudo apt-get remove avldrums.lv2-soundfontUninstall avldrums.lv2-soundfont And Its Dependencies
To uninstall avldrums.lv2-soundfont and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove avldrums.lv2-soundfontRemove avldrums.lv2-soundfont Configurations and Data
To remove avldrums.lv2-soundfont configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge avldrums.lv2-soundfontRemove 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-soundfontDependencies
avldrums.lv2-soundfont have the following dependencies:
References
Summary
In this tutorial we learn how to install avldrums.lv2-soundfont package on Kali Linux using different package management tools: apt, apt-get and aptitude.