How To Install megaglest on Debian 9
Introduction
In this tutorial we learn how to install megaglest
on Debian 9.
What is megaglest
megaglest is:
MegaGlest is a free 3D real-time customizable strategy game which takes place in a context which could be compared to that of the pre-renaissance Europe, with the licence that magic forces exist in the environment and can be controlled.
The current version is fully playable and supports both single player games against CPU controlled players and multiplayer matches over the Internet or a LAN.
There are three methods to install megaglest
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install megaglest Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install megaglest
using apt-get
by running the following command:
sudo apt-get -y install megaglest
Install megaglest Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install megaglest
using apt
by running the following command:
sudo apt -y install megaglest
Install megaglest 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 megaglest
using aptitude
by running the following command:
sudo aptitude -y install megaglest
How To Uninstall megaglest on Debian 9
To uninstall only the megaglest
package we can use the following command:
sudo apt-get remove megaglest
Uninstall megaglest And Its Dependencies
To uninstall megaglest
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove megaglest
Remove megaglest Configurations and Data
To remove megaglest
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge megaglest
Remove megaglest configuration, data, and all of its dependencies
We can use the following command to remove megaglest
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge megaglest
Dependencies
megaglest have the following dependencies:
- famfamfam-flag-png
- fonts-liberation
- fonts-uralic
- megaglest-data
- p7zip-full
- fonts-dejavu-core
- fonts-wqy-zenhei
- libc6
- libcurl3-gnutls
- libfontconfig1
- libfribidi0
- libftgl2
- libgcc1
References
Summary
In this tutorial we learn how to install megaglest
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.