How To Install bombardier on Kali Linux

In this tutorial we learn how to install bombardier on Kali Linux. bombardier is The GNU Bombing utility

Introduction

In this tutorial we learn how to install bombardier on Kali Linux.

What is bombardier

bombardier is:

This game is the same as the old Blitz16 game on Commodore 16/Plus 4, written by Simon Taylor.

The player is driving a plane that moves across the screen. When the plane reaches the right edge of the screen it starts again on the left side, but drops down one line. Below is a cityscape composed of blocks. The player has to drop bombs from the plane, and each bomb which hits a building removes some blocks. As the plane descends it risks hitting any remaining blocks so priority has to be given to bombing the tallest buildings. The level is completed when all blocks are removed and the plane has descended safely to the bottom of the screen.

Info about the original Blitz 16: http://plus4world.powweb.com/software/Blitz_16

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

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

sudo apt-get update

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

sudo apt-get -y install bombardier

Install bombardier Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install bombardier

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

sudo aptitude -y install bombardier

How To Uninstall bombardier on Kali Linux

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

sudo apt-get remove bombardier

Uninstall bombardier And Its Dependencies

To uninstall bombardier and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove bombardier

Remove bombardier Configurations and Data

To remove bombardier configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge bombardier

Remove bombardier configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge bombardier

Dependencies

bombardier have the following dependencies:

References

Summary

In this tutorial we learn how to install bombardier package on Kali Linux using different package management tools: apt, apt-get and aptitude.