How To Install minetest on Kali Linux
Introduction
In this tutorial we learn how to install minetest on Kali Linux.
What is minetest
minetest is:
Minetest is a minecraft-inspired game written from scratch and licensed under the LGPL (version 2.1 or later). It supports both survival and creative modes along with multiplayer support, dynamic lighting, and an “infinite” map generator.
There are three methods to install minetest 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 minetest Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install minetest using apt-get by running the following command:
sudo apt-get -y install minetestInstall minetest Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install minetest using apt by running the following command:
sudo apt -y install minetestInstall minetest 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 minetest using aptitude by running the following command:
sudo aptitude -y install minetestHow To Uninstall minetest on Kali Linux
To uninstall only the minetest package we can use the following command:
sudo apt-get remove minetestUninstall minetest And Its Dependencies
To uninstall minetest and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove minetestRemove minetest Configurations and Data
To remove minetest configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge minetestRemove minetest configuration, data, and all of its dependencies
We can use the following command to remove minetest configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge minetestDependencies
minetest have the following dependencies:
- minetest-data
- libc6
- libcurl3-gnutls
- libfreetype6
- libgcc-s1
- libgmp10
- libirrlicht1.8
- libjsoncpp24
- libleveldb1d
- libluajit-5.1-2
- libncursesw6
- libopenal1
- libpq5
- libspatialindex6
- libsqlite3-0
- libstdc++6
- libtinfo6
- libvorbisfile3
- libx11-6
- zlib1g
References
Summary
In this tutorial we learn how to install minetest package on Kali Linux using different package management tools: apt, apt-get and aptitude.