How To Install minetest-mod-xdecor on Kali Linux

In this tutorial we learn how to install minetest-mod-xdecor on Kali Linux. minetest-mod-xdecor is Lightweight decoration module for minetest

Introduction

In this tutorial we learn how to install minetest-mod-xdecor on Kali Linux.

What is minetest-mod-xdecor

minetest-mod-xdecor is:

This module adds a bunch of cute cubes as well as various mechanisms to the game, like for example Ender chests, cooking recipes, cutting, enchanting and a chess board…

There are three methods to install minetest-mod-xdecor 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-mod-xdecor Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install minetest-mod-xdecor using apt-get by running the following command:

sudo apt-get -y install minetest-mod-xdecor

Install minetest-mod-xdecor Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install minetest-mod-xdecor using apt by running the following command:

sudo apt -y install minetest-mod-xdecor

Install minetest-mod-xdecor 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 minetest-mod-xdecor using aptitude by running the following command:

sudo aptitude -y install minetest-mod-xdecor

How To Uninstall minetest-mod-xdecor on Kali Linux

To uninstall only the minetest-mod-xdecor package we can use the following command:

sudo apt-get remove minetest-mod-xdecor

Uninstall minetest-mod-xdecor And Its Dependencies

To uninstall minetest-mod-xdecor and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove minetest-mod-xdecor

Remove minetest-mod-xdecor Configurations and Data

To remove minetest-mod-xdecor configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge minetest-mod-xdecor

Remove minetest-mod-xdecor configuration, data, and all of its dependencies

We can use the following command to remove minetest-mod-xdecor configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge minetest-mod-xdecor

Dependencies

minetest-mod-xdecor have the following dependencies:

References

Summary

In this tutorial we learn how to install minetest-mod-xdecor package on Kali Linux using different package management tools: apt, apt-get and aptitude.