How To Install murmur on Fedora 34
Introduction
In this tutorial we learn how to install murmur
on Fedora 34.
What is murmur
Murmur(also called mumble-server) is part of the VoIP suite Mumble primarily aimed at gamers. Murmur is the server component of the suite.
We can use yum
or dnf
to install murmur
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install murmur.
Install murmur on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install murmur
using dnf
by running the following command:
sudo dnf -y install murmur
Install murmur on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install murmur
using yum
by running the following command:
sudo yum -y install murmur
How To Uninstall murmur on Fedora 34
To uninstall only the murmur
package we can use the following command:
sudo dnf remove murmur
murmur Package Contents on Fedora 34
/etc/mumble-server.ini
/etc/murmur/murmur.ini
/usr/lib/.build-id
/usr/lib/.build-id/87
/usr/lib/.build-id/87/b7d5f0e2aecfd9b75e7af89942d1152977b5cf
/usr/lib/systemd/system/murmur.service
/usr/sbin/mumble-server
/usr/sbin/murmurd
/usr/share/doc/murmur
/usr/share/doc/murmur/CHANGES
/usr/share/doc/murmur/README
/usr/share/doc/murmur/README.Linux
/usr/share/licenses/murmur
/usr/share/licenses/murmur/LICENSE
/usr/share/man/man1/murmurd.1.gz
/var/lib/mumble-server
References
Summary
In this tutorial we learn how to install murmur
on Fedora 34 using yum and dnf.