How To Install ltris on Kali Linux
Introduction
In this tutorial we learn how to install ltris on Kali Linux.
What is ltris
ltris is:
LTris is a very polished tetris clone, which offers three types of games. The classic mode, a figures mode, where different figures appear every level, and a multiplayer mode. LTris is highly configurable through its menu system.
There are three methods to install ltris 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 ltris Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ltris using apt-get by running the following command:
sudo apt-get -y install ltrisInstall ltris Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ltris using apt by running the following command:
sudo apt -y install ltrisInstall ltris 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 ltris using aptitude by running the following command:
sudo aptitude -y install ltrisHow To Uninstall ltris on Kali Linux
To uninstall only the ltris package we can use the following command:
sudo apt-get remove ltrisUninstall ltris And Its Dependencies
To uninstall ltris and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ltrisRemove ltris Configurations and Data
To remove ltris configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ltrisRemove ltris configuration, data, and all of its dependencies
We can use the following command to remove ltris configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ltrisDependencies
ltris have the following dependencies:
References
Summary
In this tutorial we learn how to install ltris package on Kali Linux using different package management tools: apt, apt-get and aptitude.