How To Install blobwars on Kali Linux
Introduction
In this tutorial we learn how to install blobwars
on Kali Linux.
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 Kali Linux. 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 on Kali Linux first since aptitude is usually not installed by default on Kali Linux. 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 Kali Linux
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 Kali Linux, we can use the command below:
sudo apt-get -y autoremove blobwars
Remove blobwars Configurations and Data
To remove blobwars
configuration and data from Kali Linux 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
Dependencies
blobwars have the following dependencies:
- libc6
- libsdl2-2.0-0
- libsdl2-image-2.0-0
- libsdl2-mixer-2.0-0
- libsdl2-net-2.0-0
- libsdl2-ttf-2.0-0
- libstdc++6
- blobwars-data
References
Summary
In this tutorial we learn how to install blobwars
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.