soundconverter command not found

In this troubleshooting guide we learn how to fix soundconverter command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

soundconverter: command not found

or when using sudo you get the following error message

sudo: soundconverter: command not found

Solutions to soundconverter: command not found

How To Fix soundconverter: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu soundconverter is provided by soundconverter package.

soundconverter is:

SoundConverter is a simple sound converter application for the GNOME environment. It reads sound files in any format supported by GStreamer and outputs them in Ogg Vorbis, FLAC, or WAV format, or MP3 format if you have the GStreamer LAME plugin.

To fix this problem, we can install more using the command below.

sudo apt-get -y install soundconverter

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install soundconverter.

sudo apt -y install soundconverter

Or if you have aptitude installed you can use the following command.

sudo aptitude install soundconverter

Summary

In this tutorial we learn how to fix soundconverter command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.