How To Install ufoai-uforadiant on Ubuntu 20.04
Introduction
In this tutorial we learn how to install ufoai-uforadiant on Ubuntu 20.04.
What is ufoai-uforadiant
ufoai-uforadiant is:
It is the year 2084. You control a secret organisation charged with defending Earth from a brutal alien enemy. Build up your bases, prepare your team, and dive head-first into the fast and flowing turn-based combat.
This package contains the map-building tool UFORadiant for UFO: Alien Invasion.
There are three methods to install ufoai-uforadiant 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 ufoai-uforadiant Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install ufoai-uforadiant using apt-get by running the following command:
sudo apt-get -y install ufoai-uforadiant
Install ufoai-uforadiant Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install ufoai-uforadiant using apt by running the following command:
sudo apt -y install ufoai-uforadiant
Install ufoai-uforadiant 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 ufoai-uforadiant using aptitude by running the following command:
sudo aptitude -y install ufoai-uforadiant
How To Uninstall ufoai-uforadiant on Ubuntu 20.04
To uninstall only the ufoai-uforadiant package we can use the following command:
sudo apt-get remove ufoai-uforadiant
Uninstall ufoai-uforadiant And Its Dependencies
To uninstall ufoai-uforadiant and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove ufoai-uforadiant
Remove ufoai-uforadiant Configurations and Data
To remove ufoai-uforadiant configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge ufoai-uforadiant
Remove ufoai-uforadiant configuration, data, and all of its dependencies
We can use the following command to remove ufoai-uforadiant configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ufoai-uforadiant
References
Summary
In this tutorial we learn how to install ufoai-uforadiant package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.