How To Install garden-of-coloured-lights on Kali Linux
Introduction
In this tutorial we learn how to install garden-of-coloured-lights on Kali Linux.
What is garden-of-coloured-lights
garden-of-coloured-lights is:
The game is basically a vertical shooter with music elements. The enemies, in fact, are kind of musical. Linley has added a simple background tune, that gets mixed with the diffetent notes played when enemies shoot.
Part of what stands out about Garden of Coloured Lights are its graphics, that even though are kept quite simple, are also carefully taken care of. Every ship still has moving parts and mechanisms that open and close, and every level is different, even though all of them share a common theme.
Your ship comes equipped with 3 options, each with its own unique weapon. There are a few pre-designed schemes to play with, or you can create your own combination of weapons.
Garden of Coloured Lights was Linley Henzel’s entry for the SHMUP-DEV Competition 2k7 Round 2.
There are three methods to install garden-of-coloured-lights 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 garden-of-coloured-lights Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install garden-of-coloured-lights using apt-get by running the following command:
sudo apt-get -y install garden-of-coloured-lightsInstall garden-of-coloured-lights Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install garden-of-coloured-lights using apt by running the following command:
sudo apt -y install garden-of-coloured-lightsInstall garden-of-coloured-lights 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 updateAfter updating apt database, We can install garden-of-coloured-lights using aptitude by running the following command:
sudo aptitude -y install garden-of-coloured-lightsHow To Uninstall garden-of-coloured-lights on Kali Linux
To uninstall only the garden-of-coloured-lights package we can use the following command:
sudo apt-get remove garden-of-coloured-lightsUninstall garden-of-coloured-lights And Its Dependencies
To uninstall garden-of-coloured-lights and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove garden-of-coloured-lightsRemove garden-of-coloured-lights Configurations and Data
To remove garden-of-coloured-lights configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge garden-of-coloured-lightsRemove garden-of-coloured-lights configuration, data, and all of its dependencies
We can use the following command to remove garden-of-coloured-lights configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge garden-of-coloured-lightsDependencies
garden-of-coloured-lights have the following dependencies:
References
Summary
In this tutorial we learn how to install garden-of-coloured-lights package on Kali Linux using different package management tools: apt, apt-get and aptitude.