gameconqueror command not found

In this troubleshooting guide we learn how to fix gameconqueror command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

gameconqueror: command not found

or when using sudo you get the following error message

sudo: gameconqueror: command not found

Solutions to gameconqueror: command not found

How To Fix gameconqueror: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu gameconqueror is provided by gameconqueror package.

gameconqueror is:

GameConqueror is a GUI based on Python and GTK+ using scanmem to locate the address of a variable in a running process. This can be used for the analysis or modification of a hostile process on a compromised machine, for reverse engineering, or as a “pokefinder” to cheat at video games.

GameConqueror provides a CheatEngine-alike user-friendly interface with more features than scanmem.

To fix this problem, we can install more using the command below.

sudo apt-get -y install gameconqueror

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install gameconqueror.

sudo apt -y install gameconqueror

Or if you have aptitude installed you can use the following command.

sudo aptitude install gameconqueror

Summary

In this tutorial we learn how to fix gameconqueror command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.