quakestat command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
quakestat: command not found
or when using sudo you get the following error message
sudo: quakestat: command not found
Solutions to quakestat: command not found
How To Fix quakestat: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu quakestat is provided by qstat package.
qstat is:
Qstat provides a simple interface for querying servers for a number of games, including but not limited to quake, quakeworld, quake2, quake3arena, unreal tournament or half-life.
To fix this problem, we can install more using the command below.
sudo apt-get -y install qstat
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install qstat.
sudo apt -y install qstat
Or if you have aptitude installed you can use the following command.
sudo aptitude install qstat
Summary
In this tutorial we learn how to fix quakestat command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.