How To Install brutefir on Kali Linux

In this tutorial we learn how to install brutefir on Kali Linux. brutefir is software convolution engine

Introduction

In this tutorial we learn how to install brutefir on Kali Linux.

What is brutefir

brutefir is:

BruteFIR is a program for applying long FIR filters to multi-channel digital audio, either offline or in realtime. Its basic operation is specified through a configuration file, and filters, attenuation and delay can be changed in runtime through a simple command line interface. The FIR filter algorithm used is an optimised frequency domain algorithm, partly implemented in hand-coded assembler, thus throughput is extremely high. In realtime, a standard computer can typically run more than 10 channels with more than 60000 filter taps each.

Through its highly modular design, things like adaptive filtering, signal generators and sample I/O are easily added, extended and modified, without the need to alter the program itself.

There are three methods to install brutefir 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 brutefir Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install brutefir using apt-get by running the following command:

sudo apt-get -y install brutefir

Install brutefir Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install brutefir using apt by running the following command:

sudo apt -y install brutefir

Install brutefir 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 brutefir using aptitude by running the following command:

sudo aptitude -y install brutefir

How To Uninstall brutefir on Kali Linux

To uninstall only the brutefir package we can use the following command:

sudo apt-get remove brutefir

Uninstall brutefir And Its Dependencies

To uninstall brutefir and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove brutefir

Remove brutefir Configurations and Data

To remove brutefir configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge brutefir

Remove brutefir configuration, data, and all of its dependencies

We can use the following command to remove brutefir configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge brutefir

Dependencies

brutefir have the following dependencies:

References

Summary

In this tutorial we learn how to install brutefir package on Kali Linux using different package management tools: apt, apt-get and aptitude.