How To Install amoebax on Debian 10
Introduction
In this tutorial we learn how to install amoebax
on Debian 10.
What is amoebax
amoebax is:
Due an awful mutation, some amoeba’s species have started to multiply until they take the world if you can’t stop them. Fortunately the mutation made then too unstable and lining up four or more will make them disappear.
Follow Kim or Tom through 6 levels in their quest to prevent the cute multiplying amoebas to take the world and become the new Amoeba Master. Watch out for the cute but amoeba’s controlled creatures that will try to put and end to your quest.
Amoebax is designed with levels for everyone, from children to adults. With the training mode everybody will quickly become a master and the tournament mode will let you have a good time with your friends. There is also catchy music, funny sound effects, and beautiful screens that sure appeal to everyone in the family.
There are three methods to install amoebax
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install amoebax Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install amoebax
using apt-get
by running the following command:
sudo apt-get -y install amoebax
Install amoebax Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install amoebax
using apt
by running the following command:
sudo apt -y install amoebax
Install amoebax 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 amoebax
using aptitude
by running the following command:
sudo aptitude -y install amoebax
How To Uninstall amoebax on Debian 10
To uninstall only the amoebax
package we can use the following command:
sudo apt-get remove amoebax
Uninstall amoebax And Its Dependencies
To uninstall amoebax
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove amoebax
Remove amoebax Configurations and Data
To remove amoebax
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge amoebax
Remove amoebax configuration, data, and all of its dependencies
We can use the following command to remove amoebax
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge amoebax
Dependencies
amoebax have the following dependencies:
References
Summary
In this tutorial we learn how to install amoebax
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.