How To Install xblast-tnt-models on Ubuntu 18.04
Introduction
In this tutorial we learn how to install xblast-tnt-models on Ubuntu 18.04.
What is xblast-tnt-models
xblast-tnt-models is:
XBlast is a multi-player arcade game inspired by the video/computer game Bomberman (Dynablaster). This package contains the player models needed for the game; both for the regular version and the mini version.
There are three methods to install xblast-tnt-models on Ubuntu 18.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 xblast-tnt-models Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install xblast-tnt-models using apt-get by running the following command:
sudo apt-get -y install xblast-tnt-models
Install xblast-tnt-models Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install xblast-tnt-models using apt by running the following command:
sudo apt -y install xblast-tnt-models
Install xblast-tnt-models 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 xblast-tnt-models using aptitude by running the following command:
sudo aptitude -y install xblast-tnt-models
How To Uninstall xblast-tnt-models on Ubuntu 18.04
To uninstall only the xblast-tnt-models package we can use the following command:
sudo apt-get remove xblast-tnt-models
Uninstall xblast-tnt-models And Its Dependencies
To uninstall xblast-tnt-models and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove xblast-tnt-models
Remove xblast-tnt-models Configurations and Data
To remove xblast-tnt-models configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge xblast-tnt-models
Remove xblast-tnt-models configuration, data, and all of its dependencies
We can use the following command to remove xblast-tnt-models configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge xblast-tnt-models
References
Summary
In this tutorial we learn how to install xblast-tnt-models package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.