How To Install tenmado on Ubuntu 18.04

In this tutorial we learn how to install tenmado on Ubuntu 18.04. tenmado is hard-core shoot em up game in blue-or-red world

Introduction

In this tutorial we learn how to install tenmado on Ubuntu 18.04.

What is tenmado

tenmado is:

tenmado is a vertically scrolling, late 1990s style (that is, a massive number of enemy shots against a smaller-than-it-looks spaceship) shoot ’em up game. A very accurate collision detection makes it a game of dexterity. If something looks like a triangle, it is a triangle, not a rectangle of similar size.

However, surviving is only 20% of the game. The main feature of tenmado is the “color chain bonus”. You can get a very big score (about 100 times bigger than a normal enemy-destruction point) by destroying enemies of the same color successively. It is easy or difficult depending on how greedy you are.

There are three methods to install tenmado 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 tenmado Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install tenmado using apt-get by running the following command:

sudo apt-get -y install tenmado

Install tenmado Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install tenmado using apt by running the following command:

sudo apt -y install tenmado

Install tenmado 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 tenmado using aptitude by running the following command:

sudo aptitude -y install tenmado

How To Uninstall tenmado on Ubuntu 18.04

To uninstall only the tenmado package we can use the following command:

sudo apt-get remove tenmado

Uninstall tenmado And Its Dependencies

To uninstall tenmado and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove tenmado

Remove tenmado Configurations and Data

To remove tenmado configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge tenmado

Remove tenmado configuration, data, and all of its dependencies

We can use the following command to remove tenmado configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge tenmado

References

Summary

In this tutorial we learn how to install tenmado package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.