How To Install qstat on Fedora 34

qstat is Real-time Game Server Status for FPS game servers

Introduction

In this tutorial we learn how to install qstat on Fedora 34.

What is qstat

QStat is a command-line program that gathers real-time statistics from Internet game servers. Most supported games are of the first person shooter variety (Quake, Half-Life, etc)

We can use yum or dnf to install qstat on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install qstat.

Install qstat 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 qstat using dnf by running the following command:

sudo dnf -y install qstat

Install qstat 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 qstat using yum by running the following command:

sudo yum -y install qstat

How To Uninstall qstat on Fedora 34

To uninstall only the qstat package we can use the following command:

sudo dnf remove qstat

qstat Package Contents on Fedora 34

/etc/qstat.cfg
/usr/bin/quakestat
/usr/lib/.build-id
/usr/lib/.build-id/d6
/usr/lib/.build-id/d6/a9ad947d9b904c958be826ba0a7210b6ef6cf5
/usr/share/doc/qstat
/usr/share/doc/qstat/CHANGES.txt
/usr/share/doc/qstat/GhostRecon.txt
/usr/share/doc/qstat/UT2003.txt
/usr/share/doc/qstat/a2s.txt
/usr/share/doc/qstat/contrib.cfg
/usr/share/doc/qstat/qstatdoc.html
/usr/share/doc/qstat/template
/usr/share/doc/qstat/template/README.txt
/usr/share/doc/qstat/template/brocTh.html
/usr/share/doc/qstat/template/brocTp.html
/usr/share/doc/qstat/template/brocTs.html
/usr/share/doc/qstat/template/brocTt.html
/usr/share/doc/qstat/template/ghostrecon.lst
/usr/share/doc/qstat/template/ghostreconTh.html
/usr/share/doc/qstat/template/ghostreconTp.html
/usr/share/doc/qstat/template/ghostreconTs.html
/usr/share/doc/qstat/template/ghostreconTt.html
/usr/share/doc/qstat/template/tribes2th.html
/usr/share/doc/qstat/template/tribes2tp.html
/usr/share/doc/qstat/template/tribes2ts.html
/usr/share/doc/qstat/template/tribes2tt.html
/usr/share/doc/qstat/template/unrealTh.html
/usr/share/doc/qstat/template/unrealTp.html
/usr/share/doc/qstat/template/unrealTs.html
/usr/share/doc/qstat/template/unrealTt.html
/usr/share/licenses/qstat
/usr/share/licenses/qstat/LICENSE.txt

References

Summary

In this tutorial we learn how to install qstat on Fedora 34 using yum and dnf.