brutefir command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
brutefir: command not found
or when using sudo you get the following error message
sudo: brutefir: command not found
Solutions to brutefir: command not found
How To Fix brutefir: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu brutefir is provided by brutefir package.
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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install brutefir
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install brutefir.
sudo apt -y install brutefir
Or if you have aptitude installed you can use the following command.
sudo aptitude install brutefir
Summary
In this tutorial we learn how to fix brutefir command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.