How To Install gbrainy on Kali Linux

In this tutorial we learn how to install gbrainy on Kali Linux. gbrainy is brain teaser game and trainer to have fun and to keep your brain trained

Introduction

In this tutorial we learn how to install gbrainy on Kali Linux.

What is gbrainy

gbrainy is:

gbrainy is a platform to train memory, arithmetical and logical capabilities with many sorts of different exercises of different difficulty levels. It should have something for all ages and purposes: kids whose parents want them to develop their capabilities, adults that want to keep their mind in form or just try it out for fun, older people that might need to do some memory exercises, etc.

It provides the following types of games:

  • Logic Puzzles: games designed to challenge your reasoning and thinking skills.
  • Mental Calculation: games based on arithmetical operations designed to prove your mental calculation skills.
  • Memory Trainers: games designed to challenge your short term memory.
  • Verbal Analogies: games that challenge your verbal aptitude.

There are three methods to install gbrainy on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install gbrainy Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install gbrainy using apt-get by running the following command:

sudo apt-get -y install gbrainy

Install gbrainy Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gbrainy using apt by running the following command:

sudo apt -y install gbrainy

Install gbrainy Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install gbrainy using aptitude by running the following command:

sudo aptitude -y install gbrainy

How To Uninstall gbrainy on Kali Linux

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

sudo apt-get remove gbrainy

Uninstall gbrainy And Its Dependencies

To uninstall gbrainy and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove gbrainy

Remove gbrainy Configurations and Data

To remove gbrainy configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge gbrainy

Remove gbrainy configuration, data, and all of its dependencies

We can use the following command to remove gbrainy configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge gbrainy

Dependencies

gbrainy have the following dependencies:

References

Summary

In this tutorial we learn how to install gbrainy package on Kali Linux using different package management tools: apt, apt-get and aptitude.