How To Install jaaa on Kali Linux
Introduction
In this tutorial we learn how to install jaaa on Kali Linux.
What is jaaa
jaaa is:
Jaaa (JACK and ALSA Audio Analyser) is an audio signal generator and spectrum analyser designed to make accurate measurements.
Jaaa allows you select on of the four inputs, ‘Min’ and ‘Max’ the min and max displayed frequencies. There can be up to two markers which helps accurately read off values in the display.
There are three methods to install jaaa 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 jaaa Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install jaaa using apt-get by running the following command:
sudo apt-get -y install jaaaInstall jaaa Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install jaaa using apt by running the following command:
sudo apt -y install jaaaInstall jaaa 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 jaaa using aptitude by running the following command:
sudo aptitude -y install jaaaHow To Uninstall jaaa on Kali Linux
To uninstall only the jaaa package we can use the following command:
sudo apt-get remove jaaaUninstall jaaa And Its Dependencies
To uninstall jaaa and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove jaaaRemove jaaa Configurations and Data
To remove jaaa configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge jaaaRemove jaaa configuration, data, and all of its dependencies
We can use the following command to remove jaaa configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge jaaaDependencies
jaaa have the following dependencies:
- libc6
- libclthreads2
- libclxclient3
- libfftw3-single3
- libgcc-s1
- libjack-jackd2-0
- libstdc++6
- libx11-6
- libzita-alsa-pcmi0
References
Summary
In this tutorial we learn how to install jaaa package on Kali Linux using different package management tools: apt, apt-get and aptitude.