How To Install drumgizmo on Kali Linux
Introduction
In this tutorial we learn how to install drumgizmo on Kali Linux.
What is drumgizmo
drumgizmo is:
DrumGizmo’s main aim is to simulate a real drum kit. Features:
- Stand-alone application, Lv2 plugin version available
- Drum multilayer velocities, allowing for several different hit velocities for each drum
- Multichannel output, making it possible to mix it just the way you would a real drumkit
- Optional built-in humanizer, analyzing the MIDI notes, adjusting velocities on-the-fly
- Mic bleed simulation
- Open drumkit file format, allowing to create your own drumkits
- Stand-alone MIDI renderer, generating .wav files, 1 for each channel
- Stand-alone MIDI input, making it possible to use DrumGizmo as a software sampler for an electronic drumkit
Please note that for using DrumGizmo you will need to download some compatible drum kit audio data made by the community (such as those available at www.drumgizmo.org) or create one yourself with DGEdit (provided in the dgedit package).
There are three methods to install drumgizmo 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 drumgizmo Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install drumgizmo using apt-get by running the following command:
sudo apt-get -y install drumgizmoInstall drumgizmo Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install drumgizmo using apt by running the following command:
sudo apt -y install drumgizmoInstall drumgizmo 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 drumgizmo using aptitude by running the following command:
sudo aptitude -y install drumgizmoHow To Uninstall drumgizmo on Kali Linux
To uninstall only the drumgizmo package we can use the following command:
sudo apt-get remove drumgizmoUninstall drumgizmo And Its Dependencies
To uninstall drumgizmo and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove drumgizmoRemove drumgizmo Configurations and Data
To remove drumgizmo configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge drumgizmoRemove drumgizmo configuration, data, and all of its dependencies
We can use the following command to remove drumgizmo configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge drumgizmoDependencies
drumgizmo have the following dependencies:
References
Summary
In this tutorial we learn how to install drumgizmo package on Kali Linux using different package management tools: apt, apt-get and aptitude.