How To Install blobwars on Ubuntu 20.04

In this tutorial we learn how to install blobwars on Ubuntu 20.04. blobwars is platform shooting game

Introduction

In this tutorial we learn how to install blobwars on Ubuntu 20.04.

What is blobwars

blobwars is:

Blob Wars: Metal Blob Solid is a 2D platform game. It is the first in the Blob Wars series.

Since their world was invaded by an alien race, the Blobs have faced a lifetime of war. But now they have a chance to win the war once and for all.

In Blob Wars: Metal Blob Solid, you take on the role of a fearless Blob agent, Bob. Bob’s mission is to infiltrate the various enemy bases around the Blobs’ homeworld and rescue as many MIAs as possible. But standing in his way are many vicious aliens, other Blobs who have been assimilated and the evil alien leader, Galdov.

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

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

sudo apt-get update

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

sudo apt-get -y install blobwars

Install blobwars Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install blobwars

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

sudo aptitude -y install blobwars

How To Uninstall blobwars on Ubuntu 20.04

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

sudo apt-get remove blobwars

Uninstall blobwars And Its Dependencies

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

sudo apt-get -y autoremove blobwars

Remove blobwars Configurations and Data

To remove blobwars configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge blobwars

Remove blobwars configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge blobwars

References

Summary

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