Introduction
In this tutorial we learn how to install avldrums.lv2-data
on Ubuntu 20.04.
What is avldrums.lv2-data
avldrums.lv2-data is:
avldrums.lv2 is a simple Drum Sample Player Plugin,
dedicated to the http://www.bandshed.net/avldrumkits/
This package provides soundfonts files.
Task: ubuntustudio-audio
There are three methods to install avldrums.lv2-data
on Ubuntu 20.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-data 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-data
using apt-get
by running the following command:
sudo apt-get -y install avldrums.lv2-data
Install avldrums.lv2-data Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install avldrums.lv2-data
using apt
by running the following command:
sudo apt -y install avldrums.lv2-data
Install avldrums.lv2-data 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-data
using aptitude
by running the following command:
sudo aptitude -y install avldrums.lv2-data
How To Uninstall avldrums.lv2-data on Ubuntu 20.04
To uninstall only the avldrums.lv2-data
package we can use the following command:
sudo apt-get remove avldrums.lv2-data
Uninstall avldrums.lv2-data And Its Dependencies
To uninstall avldrums.lv2-data
and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove avldrums.lv2-data
Remove avldrums.lv2-data Configurations and Data
To remove avldrums.lv2-data
configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge avldrums.lv2-data
Remove avldrums.lv2-data configuration, data, and all of its dependencies
We can use the following command to remove avldrums.lv2-data
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge avldrums.lv2-data
References
Summary
In this tutorial we learn how to install avldrums.lv2-data
package on Ubuntu 20.04 using different package management tools: apt
, apt-get
and aptitude
.