How To Install ii-esu on Ubuntu 18.04

In this tutorial we learn how to install ii-esu on Ubuntu 18.04. ii-esu is shooter game

Introduction

In this tutorial we learn how to install ii-esu on Ubuntu 18.04.

What is ii-esu

ii-esu is:

Your ship is surrounded by two circles. You shoot in the direction of your mouse points, and you move if the mouse pointer is outside the inner circle.

The original name of the game is ES, which is pronounced ii-esu in Japanese.

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

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

sudo apt-get update

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

sudo apt-get -y install ii-esu

Install ii-esu Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install ii-esu

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

sudo aptitude -y install ii-esu

How To Uninstall ii-esu on Ubuntu 18.04

To uninstall only the ii-esu package we can use the following command:

sudo apt-get remove ii-esu

Uninstall ii-esu And Its Dependencies

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

sudo apt-get -y autoremove ii-esu

Remove ii-esu Configurations and Data

To remove ii-esu configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge ii-esu

Remove ii-esu configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge ii-esu

References

Summary

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