aec command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aec: command not found
or when using sudo you get the following error message
sudo: aec: command not found
Solutions to aec: command not found
How To Fix aec: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aec is provided by libaec-tools package.
libaec-tools is:
Libaec provides fast lossless compression of 1 up to 32 bit wide signed or unsigned integers (samples).
This package provides the aec compression utility.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libaec-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libaec-tools.
sudo apt -y install libaec-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install libaec-tools
Summary
In this tutorial we learn how to fix aec command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.