How To Install cytadela on Kali Linux

In this tutorial we learn how to install cytadela on Kali Linux. cytadela is old-school first person shooter game

Introduction

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

What is cytadela

cytadela is:

Cytadela is a single player game in which the player fights against computer-controlled (AI) enemies. The goal of the game is to find six bomb parts with which the Citadel has to be blown up.

To achieve it, the player not only has to defend himself against the enemies, but (s)he also has to solve many riddles, such as switching appropriate buttons in order to open some door, move some walls, etc.

It’s a conversion of a first person shooter Amiga game originally released in mid 1990’s, first in Poland and then in other countries.

Cytadela requires a 3D graphics card. It uses the OpenGL and GLU libraries for 3D, and SDL and SDL_mixer for 2D, music, sounds and controllers.

There are three methods to install cytadela 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 cytadela Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install cytadela

Install cytadela Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install cytadela

Install cytadela 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 cytadela using aptitude by running the following command:

sudo aptitude -y install cytadela

How To Uninstall cytadela on Kali Linux

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

sudo apt-get remove cytadela

Uninstall cytadela And Its Dependencies

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

sudo apt-get -y autoremove cytadela

Remove cytadela Configurations and Data

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

sudo apt-get -y purge cytadela

Remove cytadela configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge cytadela

Dependencies

cytadela have the following dependencies:

References

Summary

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