murmurd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
murmurd: command not found
or when using sudo you get the following error message
sudo: murmurd: command not found
Solutions to murmurd: command not found
How To Fix murmurd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu murmurd is provided by mumble-server package.
mumble-server is:
Murmur is the VoIP server component for Mumble. Murmur is installed in a system-wide fashion, but can also be run by individual users. Each murmur process supports multiple virtual servers, each with their own user base and channel list.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mumble-server
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mumble-server.
sudo apt -y install mumble-server
Or if you have aptitude installed you can use the following command.
sudo aptitude install mumble-server
Summary
In this tutorial we learn how to fix murmurd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.