How To Install konquest on Debian 9
Introduction
In this tutorial we learn how to install konquest on Debian 9.
What is konquest
konquest is:
Konquest is a game of galactic conquest for KDE, where rival empires vie to conquer planets and crush all opposition. The game can be played with up to nine empires, commanded either by the computer or by puny earthlings.
This package is part of the KDE games module.
There are three methods to install konquest 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 konquest Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install konquest using apt-get by running the following command:
sudo apt-get -y install konquest
Install konquest Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install konquest using apt by running the following command:
sudo apt -y install konquest
Install konquest 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 konquest using aptitude by running the following command:
sudo aptitude -y install konquest
How To Uninstall konquest on Debian 9
To uninstall only the konquest package we can use the following command:
sudo apt-get remove konquest
Uninstall konquest And Its Dependencies
To uninstall konquest and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove konquest
Remove konquest Configurations and Data
To remove konquest configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge konquest
Remove konquest configuration, data, and all of its dependencies
We can use the following command to remove konquest configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge konquest
Dependencies
konquest have the following dependencies:
References
Summary
In this tutorial we learn how to install konquest package on Debian 9 using different package management tools: apt, apt-get and aptitude.