mumble command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mumble: command not found
or when using sudo you get the following error message
sudo: mumble: command not found
Solutions to mumble: command not found
How To Fix mumble: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mumble is provided by mumble package.
mumble is:
Mumble is a low-latency, high quality voice chat program for gaming. It features noise suppression, encrypted connections for both voice and instant messaging, automatic gain control and low latency audio with support for multiple audio standards. Mumble includes an in-game overlay compatible with most open-source and commercial 3D applications. Mumble is just a client and uses a non-standard protocol. You will need a dedicated server to talk to other users. Server functionality is provided by the package “mumble-server”.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mumble
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mumble.
sudo apt -y install mumble
Or if you have aptitude installed you can use the following command.
sudo aptitude install mumble
Summary
In this tutorial we learn how to fix mumble command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.