How To Install gnome-2048 on Kali Linux
Introduction
In this tutorial we learn how to install gnome-2048
on Kali Linux.
What is gnome-2048
gnome-2048 is:
GNOME 2048 is a clone of Gabriele Cirulli’s 2048, a puzzle game based on Veewo Studios’ 1024.
Move the sliding tiles with one of the four arrow keys on your keyboard. When two tiles with the same number touch, they combine into a single tile and the numbers are added together.
There are three methods to install gnome-2048
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 gnome-2048 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install gnome-2048
using apt-get
by running the following command:
sudo apt-get -y install gnome-2048
Install gnome-2048 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install gnome-2048
using apt
by running the following command:
sudo apt -y install gnome-2048
Install gnome-2048 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 gnome-2048
using aptitude
by running the following command:
sudo aptitude -y install gnome-2048
How To Uninstall gnome-2048 on Kali Linux
To uninstall only the gnome-2048
package we can use the following command:
sudo apt-get remove gnome-2048
Uninstall gnome-2048 And Its Dependencies
To uninstall gnome-2048
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gnome-2048
Remove gnome-2048 Configurations and Data
To remove gnome-2048
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gnome-2048
Remove gnome-2048 configuration, data, and all of its dependencies
We can use the following command to remove gnome-2048
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gnome-2048
Dependencies
gnome-2048 have the following dependencies:
- libc6
- libcairo2
- libclutter-1.0-0
- libclutter-gtk-1.0-0
- libgee-0.8-2
- libglib2.0-0
- libgnome-games-support-1-3
- libgtk-3-0
- libpango-1.0-0
- libpangocairo-1.0-0
- dconf-gsettings-backend
References
Summary
In this tutorial we learn how to install gnome-2048
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.