How To Install rakarrack on Debian 11
Introduction
In this tutorial we learn how to install rakarrack
on Debian 11.
What is rakarrack
rakarrack is:
Rakarrack is a guitar effects processor for GNU / Linux simple and easy to use but it contains features that make it unique in this field of applications.
Currently it contains 17 effects:
- Linear Equalizer
- Parametric Equalizer
- Compressor
- Distorsion
- Overdrive
- Echo
- Chorus
- Phaser
- Flanger
- Reverb
- WahWah
- Alienwah
- Harmonizer
- NoiseGate
- Musical Delay
- Cabinet
- AutoPan/Extra Stereo
Rakarrack integrates a tuner and a MIDI converter. It can also be handled by an external MIDI controller. The settings designed by the user can be stored in presets and these presets can be used to create banks of effects.
There are three methods to install rakarrack
on Debian 11. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install rakarrack Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install rakarrack
using apt-get
by running the following command:
sudo apt-get -y install rakarrack
Install rakarrack Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install rakarrack
using apt
by running the following command:
sudo apt -y install rakarrack
Install rakarrack 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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install rakarrack
using aptitude
by running the following command:
sudo aptitude -y install rakarrack
How To Uninstall rakarrack on Debian 11
To uninstall only the rakarrack
package we can use the following command:
sudo apt-get remove rakarrack
Uninstall rakarrack And Its Dependencies
To uninstall rakarrack
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove rakarrack
Remove rakarrack Configurations and Data
To remove rakarrack
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge rakarrack
Remove rakarrack configuration, data, and all of its dependencies
We can use the following command to remove rakarrack
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge rakarrack
Dependencies
rakarrack have the following dependencies:
References
Summary
In this tutorial we learn how to install rakarrack
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.