How To Install eq10q on Kali Linux
Introduction
In this tutorial we learn how to install eq10q
on Kali Linux.
What is eq10q
eq10q is:
Package contains these plugins:
- eq10q : 10 band equalizer;
- eq6q : 6 band equalizer;
- eq4q : 4 band equalizer;
- eq1q : 1 band equalizer;
- cs10q : compressor;
- cs10qm : side-chain input compressor;
- gt10q : gate;
- bassup : bass enhancer;
- lr2ms : mid/side matrix lr to ms;
- ms2lr : mid/side matrix ms to lr.
All plugins have mono and stereo version.
More information: http://eq10q.sourceforge.net/
There are three methods to install eq10q
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 eq10q Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install eq10q
using apt-get
by running the following command:
sudo apt-get -y install eq10q
Install eq10q Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install eq10q
using apt
by running the following command:
sudo apt -y install eq10q
Install eq10q 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 update
After updating apt database, We can install eq10q
using aptitude
by running the following command:
sudo aptitude -y install eq10q
How To Uninstall eq10q on Kali Linux
To uninstall only the eq10q
package we can use the following command:
sudo apt-get remove eq10q
Uninstall eq10q And Its Dependencies
To uninstall eq10q
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove eq10q
Remove eq10q Configurations and Data
To remove eq10q
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge eq10q
Remove eq10q configuration, data, and all of its dependencies
We can use the following command to remove eq10q
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge eq10q
Dependencies
eq10q have the following dependencies:
References
Summary
In this tutorial we learn how to install eq10q
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.