How To Install garden-of-coloured-lights-data on Kali Linux
Introduction
In this tutorial we learn how to install garden-of-coloured-lights-data
on Kali Linux.
What is garden-of-coloured-lights-data
garden-of-coloured-lights-data 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.
This package contains the data files for Garden of Coloured Lights.
There are three methods to install garden-of-coloured-lights-data
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-data Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install garden-of-coloured-lights-data
using apt-get
by running the following command:
sudo apt-get -y install garden-of-coloured-lights-data
Install garden-of-coloured-lights-data Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install garden-of-coloured-lights-data
using apt
by running the following command:
sudo apt -y install garden-of-coloured-lights-data
Install garden-of-coloured-lights-data 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 garden-of-coloured-lights-data
using aptitude
by running the following command:
sudo aptitude -y install garden-of-coloured-lights-data
How To Uninstall garden-of-coloured-lights-data on Kali Linux
To uninstall only the garden-of-coloured-lights-data
package we can use the following command:
sudo apt-get remove garden-of-coloured-lights-data
Uninstall garden-of-coloured-lights-data And Its Dependencies
To uninstall garden-of-coloured-lights-data
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-lights-data
Remove garden-of-coloured-lights-data Configurations and Data
To remove garden-of-coloured-lights-data
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge garden-of-coloured-lights-data
Remove garden-of-coloured-lights-data configuration, data, and all of its dependencies
We can use the following command to remove garden-of-coloured-lights-data
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge garden-of-coloured-lights-data
Dependencies
garden-of-coloured-lights-data have the following dependencies:
References
Summary
In this tutorial we learn how to install garden-of-coloured-lights-data
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.