How To Install libbs2b-dev on Kali Linux
Introduction
In this tutorial we learn how to install libbs2b-dev
on Kali Linux.
What is libbs2b-dev
libbs2b-dev is:
The Bauer stereophonic-to-binaural DSP (bs2b) is designed to improve headphone listening of stereo audio records.
Typical stereo recordings are made for listening with speakers. What’s missing in headphones is the sound going from each channel to the opposite ear, arriving a short time later for the extra distance traveled, and with a bit of high frequency roll-off for the shadowing effect of the head. The time delay to the far ear should also be somewhat longer at low frequencies than at high frequencies. bs2b implements both of these ideas to transform stereophonic recordings for headphone listening.
This package contains the files needed to build packages linking against libbs2b.
There are three methods to install libbs2b-dev
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 libbs2b-dev Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libbs2b-dev
using apt-get
by running the following command:
sudo apt-get -y install libbs2b-dev
Install libbs2b-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libbs2b-dev
using apt
by running the following command:
sudo apt -y install libbs2b-dev
Install libbs2b-dev 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 libbs2b-dev
using aptitude
by running the following command:
sudo aptitude -y install libbs2b-dev
How To Uninstall libbs2b-dev on Kali Linux
To uninstall only the libbs2b-dev
package we can use the following command:
sudo apt-get remove libbs2b-dev
Uninstall libbs2b-dev And Its Dependencies
To uninstall libbs2b-dev
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libbs2b-dev
Remove libbs2b-dev Configurations and Data
To remove libbs2b-dev
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libbs2b-dev
Remove libbs2b-dev configuration, data, and all of its dependencies
We can use the following command to remove libbs2b-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libbs2b-dev
Dependencies
libbs2b-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libbs2b-dev
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.