wavinfo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
wavinfo: command not found
or when using sudo you get the following error message
sudo: wavinfo: command not found
Solutions to wavinfo: command not found
How To Fix wavinfo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu wavinfo is provided by wavbreaker package.
wavbreaker is:
This application’s purpose in life is to take a wave file and break it up into multiple wave files. It makes a clean break at the correct position to burn the files to an audio cd without any dead air between the tracks.
To fix this problem, we can install more using the command below.
sudo apt-get -y install wavbreaker
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install wavbreaker.
sudo apt -y install wavbreaker
Or if you have aptitude installed you can use the following command.
sudo aptitude install wavbreaker
Summary
In this tutorial we learn how to fix wavinfo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.