How To Install gigalomania on Debian 10
Introduction
In this tutorial we learn how to install gigalomania on Debian 10.
What is gigalomania
gigalomania is:
Gigalomania is an open source 2D Real Time Strategy god game. The gameplay consists of researching and developing new technology with which to conquer your enemies, from rocks and sticks to nuclear weapons and spaceships. You can advance through ten different ages, from the stone age to the future. There are 28 different maps to play through.
This package contains the main program.
There are three methods to install gigalomania on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install gigalomania Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install gigalomania using apt-get by running the following command:
sudo apt-get -y install gigalomania
Install gigalomania Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install gigalomania using apt by running the following command:
sudo apt -y install gigalomania
Install gigalomania Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install gigalomania using aptitude by running the following command:
sudo aptitude -y install gigalomania
How To Uninstall gigalomania on Debian 10
To uninstall only the gigalomania package we can use the following command:
sudo apt-get remove gigalomania
Uninstall gigalomania And Its Dependencies
To uninstall gigalomania and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove gigalomania
Remove gigalomania Configurations and Data
To remove gigalomania configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge gigalomania
Remove gigalomania configuration, data, and all of its dependencies
We can use the following command to remove gigalomania configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gigalomania
Dependencies
gigalomania have the following dependencies:
References
Summary
In this tutorial we learn how to install gigalomania package on Debian 10 using different package management tools: apt, apt-get and aptitude.