rename-flac command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rename-flac: command not found
or when using sudo you get the following error message
sudo: rename-flac: command not found
Solutions to rename-flac: command not found
How To Fix rename-flac: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rename-flac is provided by rename-flac package.
rename-flac is:
rename-flac is a command-line tool that takes the information from FLAC metadata to batch rename the files according to a filenaming scheme.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rename-flac
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rename-flac.
sudo apt -y install rename-flac
Or if you have aptitude installed you can use the following command.
sudo aptitude install rename-flac
Summary
In this tutorial we learn how to fix rename-flac command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.