How To Install dangen on Ubuntu 20.04
Introduction
In this tutorial we learn how to install dangen on Ubuntu 20.04.
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 Ubuntu 20.04. 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 first since aptitude is usually not installed by default on Ubuntu. 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 Ubuntu 20.04
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 Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove dangen
Remove dangen Configurations and Data
To remove dangen configuration and data from Ubuntu 20.04 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
References
Summary
In this tutorial we learn how to install dangen package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.