How to install Minetest in Ubuntu 17.04

How to install Minetest in Ubuntu 17.04

Minetest is an open source Minecraft-like game. With both single player and multiplayer modes, it enables the users to craft items, walk, dig and build structures, and create new maps via the lightweight map generator in a three-dimensional open world. It offers features such as texture packs, mods or modules that are user-created modifications to the game. This tutorial explains the installation procedure of Minetest in Ubuntu 17.04.

Installation procedure

To start the installation procedure, add the repo by executing the following command.

root@linuxhelp1:~# add-apt-repository ppa:minetestdevs/stable
 Here stable releases can be found.
 More info: https://launchpad.net/~minetestdevs/+archive/ubuntu/stable
Press [ENTER] to continue or ctrl-c to cancel adding it
gpg: keybox ' /tmp/tmpjt3ugkad/pubring.gpg'  created
gpg: /tmp/tmpjt3ugkad/trustdb.gpg: trustdb created
gpg: key 0CD0F565F8CDAB41: public key " Launchpad PPA for Minetest Developer"  imported
gpg: Total number processed: 1
gpg:               imported: 1
OK

The repositories are added to the target system. Update the apt source by executing the apt-get update command.

root@linuxhelp1:~# apt-get update
Hit:1 http://in.archive.ubuntu.com/ubuntu zesty InRelease
Get:2 http://security.ubuntu.com/ubuntu zesty-security InRelease [89.2 kB]    
Get:3 http://in.archive.ubuntu.com/ubuntu zesty-updates InRelease [89.2 kB]   
Hit:4 http://ppa.launchpad.net/dhor/myway/ubuntu zesty InRelease              
Hit:5 http://ppa.launchpad.net/maarten-fonville/android-studio/ubuntu zesty InRelease
Hit:6 http://ppa.launchpad.net/minetestdevs/stable/ubuntu zesty InRelease     
Get:7 http://in.archive.ubuntu.com/ubuntu zesty-backports InRelease [89.2 kB] 
Hit:8 http://ppa.launchpad.net/thomas-schiex/blender/ubuntu zesty InRelease   
Hit:9 http://ppa.launchpad.net/webupd8team/atom/ubuntu zesty InRelease        
Hit:10 http://ppa.launchpad.net/webupd8team/java/ubuntu zesty InRelease       
Fetched 268 kB in 2s (115 kB/s)                   
Reading package lists... Done

The target system is updated with the required repositories. Install the minetest package by executing the following command.

root@linuxhelp1:~# apt-get install minetest
Reading package lists... Done
Building dependency tree      
Reading state information... Done
The following additional packages will be installed:
  libirrlicht1.8 libjsoncpp1 libluajit-5.1-2 libluajit-5.1-common
  minetest-data python-imaging python-pil
Suggested packages:
  minetest-mod-moreblocks minetest-mod-moreores minetest-mod-pipeworks
  minetest-server python-pil-doc python-pil-dbg
The following NEW packages will be installed:
  libirrlicht1.8 libjsoncpp1 libluajit-5.1-2 libluajit-5.1-common minetest
  minetest-data python-imaging python-pil
0 upgraded, 8 newly installed, 0 to remove and 35 not upgraded.
Need to get 8,829 kB of archives.
After this operation, 30.1 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://in.archive.ubuntu.com/ubuntu zesty/universe amd64 libirrlicht1.8 amd64 1.8.4+dfsg1-1 [1,551 kB]
Get:2 http://in.archive.ubuntu.com/ubuntu zesty/universe amd64 libluajit-5.1-common all 2.0.4+dfsg-1 [35.3 kB]
Get:3 http://in.archive.ubuntu.com/ubuntu zesty/universe amd64 libluajit-5.1-2 amd64 2.0.4+dfsg-1 [205 kB]
Get:4 http://in.archive.ubuntu.com/ubuntu zesty/main amd64 python-pil amd64 4.0.0-4 [330 kB]
Get:5 http://in.archive.ubuntu.com/ubuntu zesty/universe amd64 python-imaging all 4.0.0-4 [4,136 B]
Get:6 http://in.archive.ubuntu.com/ubuntu zesty/main amd64 libjsoncpp1 amd64 1.7.4-3 [73.6 kB]
Get:7 http://in.archive.ubuntu.com/ubuntu zesty/universe amd64 minetest-data all 0.4.15+repack2-1 [4,763 kB]
Get:8 http://in.archive.ubuntu.com/ubuntu zesty/universe amd64 minetest amd64 0.4.15+repack2-1 [1,866 kB]
Fetched 8,829 kB in 19s (460 kB/s)                                            
Selecting previously unselected package libirrlicht1.8:amd64.
(Reading database ... 207585 files and directories currently installed.)
Preparing to unpack .../0-libirrlicht1.8_1.8.4+dfsg1-1_amd64.deb ...
Unpacking libirrlicht1.8:amd64 (1.8.4+dfsg1-1) ...
Selecting previously unselected package libluajit-5.1-common.
Preparing to unpack .../1-libluajit-5.1-common_2.0.4+dfsg-1_all.deb ...
Unpacking libluajit-5.1-common (2.0.4+dfsg-1) ...
Selecting previously unselected package libluajit-5.1-2:amd64.
.
.
.
Setting up libluajit-5.1-common (2.0.4+dfsg-1) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu2) ...
Processing triggers for bamfdaemon (0.5.3+17.04.20170406-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for libc-bin (2.24-9ubuntu2) ...
Setting up libluajit-5.1-2:amd64 (2.0.4+dfsg-1) ...
Processing triggers for man-db (2.7.6.1-2) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Processing triggers for hicolor-icon-theme (0.15-1) ...
Setting up python-pil:amd64 (4.0.0-4) ...
Setting up libjsoncpp1:amd64 (1.7.4-3) ...
Setting up python-imaging (4.0.0-4) ...
Setting up minetest-data (0.4.15+repack2-1) ...
Setting up minetest (0.4.15+repack2-1) ...
Processing triggers for libc-bin (2.24-9ubuntu2) ...

The application is installed successfully. To run the application, type the minetest application name in the Ubuntu dashboard and click on the icon to run the application.

The minetest application is running successfully. Now the user can play the game and build many buildings as the user desires.

Wasn' t that an easy installation procedure? Minetest also offers adding map limit config option.

Tag : Game Ubuntu
FAQ
Q
What is texture pack in Minetest?
A
A texture pack is the collection of files that are used to change the in-game textures of blocks, items, mobs and the GUI. The native resolution of Minetest's textures are 16 × 16 pixels.
Q
Whteher it How can I make Minetest be like Minecraft?
A
The easiest way to do this is to install a Minecraft-like games. Examples include:

MineClone 2 (serious clone, very WIP)
Minitest (very simple clone, very old)
Overcraft Origins (continuation of Minitest) s a free
Q
Why don’t I find any dungeons/jungles?
A
This is probably because they have been disabled in your configuration. You can enable them by adding “v6_jungles, dungeons” to mg_flags in your minetest.conf file.
Q
Why can’t I find the mods default or wool or fire?
A
Some mods might depend on those mods. These mods are part of Minetest Game and are not meant to be installed as seperate mods. For a mod depending on e.g. default to work, you will need to use Minetest Game.
Q
How do I set my spawn point?
A
If you play Minetest Game, you can build a bed and sleep at night. On your next life, you will spawn on the bed.