How To Install dangen on Kali Linux
Introduction
In this tutorial we learn how to install dangen
on Kali Linux.
What is dangen
dangen is:
dangen is a shoot ’em up game that attach importance to accuracy of shooting. With the combination of the cursor key and the shot button, you can shoot at your side or even at your back. Get the bonus point by hitting the enemy without a miss. You can choose stages of different difficulty.
There are three methods to install dangen
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 dangen Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install dangen
using apt-get
by running the following command:
sudo apt-get -y install dangen
Install dangen Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install dangen
using apt
by running the following command:
sudo apt -y install dangen
Install dangen 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 dangen
using aptitude
by running the following command:
sudo aptitude -y install dangen
How To Uninstall dangen on Kali Linux
To uninstall only the dangen
package we can use the following command:
sudo apt-get remove dangen
Uninstall dangen And Its Dependencies
To uninstall dangen
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove dangen
Remove dangen Configurations and Data
To remove dangen
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge dangen
Remove dangen configuration, data, and all of its dependencies
We can use the following command to remove dangen
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge dangen
Dependencies
dangen have the following dependencies:
References
Summary
In this tutorial we learn how to install dangen
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.