operon command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
operon: command not found
or when using sudo you get the following error message
sudo: operon: command not found
Solutions to operon: command not found
How To Fix operon: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu operon is provided by exfalso package.
exfalso is:
Ex Falso displays and edits audio metadata tags. Supported formats include MP3, Ogg Vorbis, FLAC, Musepack (MPC), WavPack, and MOD/XM/IT.
A command-line counterpart, Operon, is also distributed as part of this package.
Notable features include:
- Freeform tag editing for most supported formats, including ID3v2
- Multiple values for tag keys
- Flexible rename-by-tags and tag-by-filename patterns
- Extensible using simple Python-based plugins
- Edit multiple files in several formats at once
To fix this problem, we can install more using the command below.
sudo apt-get -y install exfalso
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install exfalso.
sudo apt -y install exfalso
Or if you have aptitude installed you can use the following command.
sudo aptitude install exfalso
Summary
In this tutorial we learn how to fix operon command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.