How To Install mirrormagic on Kali Linux
Introduction
In this tutorial we learn how to install mirrormagic
on Kali Linux.
What is mirrormagic
mirrormagic is:
A game like “Deflektor” (C 64) or “Mindbender” (Amiga). The goal is to work out how to get around obstacles to shoot energy containers with your beam, enabling the path to the next level to be opened. Included are many levels known from the games “Deflektor” and “Mindbender”.
Some features: - stereo sound effects and music - music module support for SDL version (Unix/Win32) - fullscreen support for SDL version (Unix/Win32) - complete source code included under GNU GPL
There are three methods to install mirrormagic
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 mirrormagic Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install mirrormagic
using apt-get
by running the following command:
sudo apt-get -y install mirrormagic
Install mirrormagic Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install mirrormagic
using apt
by running the following command:
sudo apt -y install mirrormagic
Install mirrormagic 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 mirrormagic
using aptitude
by running the following command:
sudo aptitude -y install mirrormagic
How To Uninstall mirrormagic on Kali Linux
To uninstall only the mirrormagic
package we can use the following command:
sudo apt-get remove mirrormagic
Uninstall mirrormagic And Its Dependencies
To uninstall mirrormagic
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove mirrormagic
Remove mirrormagic Configurations and Data
To remove mirrormagic
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge mirrormagic
Remove mirrormagic configuration, data, and all of its dependencies
We can use the following command to remove mirrormagic
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge mirrormagic
Dependencies
mirrormagic have the following dependencies:
References
Summary
In this tutorial we learn how to install mirrormagic
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.