How To Install garden-of-coloured-lights on Debian 12
Introduction
In this tutorial we learn how to install garden-of-coloured-lights on Debian 12.
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 Debian 12. 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 update
After 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-lights
Install garden-of-coloured-lights 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 using apt by running the following command:
sudo apt -y install garden-of-coloured-lights
Install garden-of-coloured-lights 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 Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install garden-of-coloured-lights using aptitude by running the following command:
sudo aptitude -y install garden-of-coloured-lights
How To Uninstall garden-of-coloured-lights on Debian 12
To uninstall only the garden-of-coloured-lights package we can use the following command:
sudo apt-get remove garden-of-coloured-lights
Uninstall garden-of-coloured-lights And Its Dependencies
To uninstall garden-of-coloured-lights and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove garden-of-coloured-lights
Remove garden-of-coloured-lights Configurations and Data
To remove garden-of-coloured-lights configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge garden-of-coloured-lights
Remove 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-lights
Dependencies
garden-of-coloured-lights have the following dependencies:
References
Summary
In this tutorial we learn how to install garden-of-coloured-lights package on Debian 12 using different package management tools: apt, apt-get and aptitude.