How To Install primrose on Kali Linux
Introduction
In this tutorial we learn how to install primrose
on Kali Linux.
What is primrose
primrose is:
Primrose is a puzzle game by Jason Rohrer and a departure from his previous games.
Primrose is an exploration into deep gameplay in single-player games. It is a tile clearing and placement game with chain reactions and without gravity or timing elements. The audio is limited to minimal but dynamic sound effects that change with game events and progress. It was designed as a casual but engaging and intelligent game for mobile phones.
The player places pairs of coloured tiles on a 7x7 grid. Tiles are cleared by surrounding one colour group with another colour group, scoring points. The cleared tiles change the colour of the surrounding colour group, allowing for chain reactions that give more points. More colours are added as more tiles have been placed on the grid and eventually the game will end when the grid fills up.
Primrose features a networked high score board with instant replay of the high scores, a comprehensive tutorial with animated examples, a colourblind mode, glowing, pulsating, retro graphics and synth-inspired sound effects.
There are three methods to install primrose
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 primrose Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install primrose
using apt-get
by running the following command:
sudo apt-get -y install primrose
Install primrose Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install primrose
using apt
by running the following command:
sudo apt -y install primrose
Install primrose 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 primrose
using aptitude
by running the following command:
sudo aptitude -y install primrose
How To Uninstall primrose on Kali Linux
To uninstall only the primrose
package we can use the following command:
sudo apt-get remove primrose
Uninstall primrose And Its Dependencies
To uninstall primrose
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove primrose
Remove primrose Configurations and Data
To remove primrose
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge primrose
Remove primrose configuration, data, and all of its dependencies
We can use the following command to remove primrose
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge primrose
Dependencies
primrose have the following dependencies:
References
Summary
In this tutorial we learn how to install primrose
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.