glsweep command not found

In this troubleshooting guide we learn how to fix glsweep command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

glsweep: command not found

or when using sudo you get the following error message

sudo: glsweep: command not found

Solutions to glsweep: command not found

How To Fix glsweep: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu glsweep is provided by drc package.

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.

To fix this problem, we can install more using the command below.

sudo apt-get -y install drc

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install drc.

sudo apt -y install drc

Or if you have aptitude installed you can use the following command.

sudo aptitude install drc

Summary

In this tutorial we learn how to fix glsweep command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.