How To Install pax-britannica on Debian 10
Introduction
In this tutorial we learn how to install pax-britannica
on Debian 10.
What is pax-britannica
pax-britannica is:
Pax Britannica is a one-button real-time strategy game by No Fun Games. Up to four players battle it out underwater, struggling to be the last one standing!
Each player uses one button to spawn ships that fight automatically using the latest in artificial aquatelligence technology. Gamepads are also supported. The player who keeps their factory ship alive wins!
This package contains the game binary.
There are three methods to install pax-britannica
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 pax-britannica Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install pax-britannica
using apt-get
by running the following command:
sudo apt-get -y install pax-britannica
Install pax-britannica Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install pax-britannica
using apt
by running the following command:
sudo apt -y install pax-britannica
Install pax-britannica 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 pax-britannica
using aptitude
by running the following command:
sudo aptitude -y install pax-britannica
How To Uninstall pax-britannica on Debian 10
To uninstall only the pax-britannica
package we can use the following command:
sudo apt-get remove pax-britannica
Uninstall pax-britannica And Its Dependencies
To uninstall pax-britannica
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove pax-britannica
Remove pax-britannica Configurations and Data
To remove pax-britannica
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge pax-britannica
Remove pax-britannica configuration, data, and all of its dependencies
We can use the following command to remove pax-britannica
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge pax-britannica
Dependencies
pax-britannica have the following dependencies:
References
Summary
In this tutorial we learn how to install pax-britannica
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.