How To Install drc on Kali Linux
Introduction
In this tutorial we learn how to install drc on Kali Linux.
What is drc
drc is:
DRC is program used to generate correction filters for acoustic compensation of HiFi and audio systems in general, including listening room compensation. Program generates just the FIR correction filters, which can be used with a real time or offline convolver to provide real time or offline correction.
DRC doesn’t provide convolution features, and provides only some simplified, although really accurate, measuring tools.
There are three methods to install drc 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 drc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install drc using apt-get by running the following command:
sudo apt-get -y install drcInstall drc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install drc using apt by running the following command:
sudo apt -y install drcInstall drc 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 drc using aptitude by running the following command:
sudo aptitude -y install drcHow To Uninstall drc on Kali Linux
To uninstall only the drc package we can use the following command:
sudo apt-get remove drcUninstall drc And Its Dependencies
To uninstall drc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove drcRemove drc Configurations and Data
To remove drc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge drcRemove drc configuration, data, and all of its dependencies
We can use the following command to remove drc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge drcDependencies
drc have the following dependencies:
References
Summary
In this tutorial we learn how to install drc package on Kali Linux using different package management tools: apt, apt-get and aptitude.