How To Install lmemory on Kali Linux
Introduction
In this tutorial we learn how to install lmemory on Kali Linux.
What is lmemory
lmemory is:
The Linux Memory Game is an X11 game for children ages 3 and up, based on the card game “Memory”. It is written using GTK+ library. Although it is a children’s game, it has five skill levels, the higher ones are challenging to adults as well. It features the ability to add your own 64x64 pixmap images.
There are three methods to install lmemory 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 lmemory Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install lmemory using apt-get by running the following command:
sudo apt-get -y install lmemoryInstall lmemory Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install lmemory using apt by running the following command:
sudo apt -y install lmemoryInstall lmemory 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 lmemory using aptitude by running the following command:
sudo aptitude -y install lmemoryHow To Uninstall lmemory on Kali Linux
To uninstall only the lmemory package we can use the following command:
sudo apt-get remove lmemoryUninstall lmemory And Its Dependencies
To uninstall lmemory and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove lmemoryRemove lmemory Configurations and Data
To remove lmemory configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge lmemoryRemove lmemory configuration, data, and all of its dependencies
We can use the following command to remove lmemory configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge lmemoryDependencies
lmemory have the following dependencies:
References
Summary
In this tutorial we learn how to install lmemory package on Kali Linux using different package management tools: apt, apt-get and aptitude.