lsconv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lsconv: command not found
or when using sudo you get the following error message
sudo: lsconv: command not found
Solutions to lsconv: command not found
How To Fix lsconv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lsconv 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 lsconv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.