Installation de Minetest

Installation de Minetest.

Matériel :
Raspberry Pi 4 Model B Rev 1.4
Distribution :
Raspbian GNU/Linux 10 (buster) 2021-01-11
Liens :
https://miniordi.hacktech.dev/installation-du-client-minetest-stable-0-4-16-sur-raspberry-pi-3/
https://www.minetest.net/

1/ Téléchargement des paquets de développement.

pi@doompi:~ $ sudo apt-get install build-essential git-core cmake libirrlicht-dev cmake libbz2-dev libpng-dev libjpeg-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libcurl4-gnutls-dev libfreetype6-dev zlib1g-dev libgmp-dev libjsoncpp-dev libluajit-5.1-2 libluajit-5.1-dev  libncurses5-dev doxygen gettext-base libgettextpo-dev libopenal-dev libvorbis-dev gettext libleveldb-dev  postgresql-server-dev-all
 

2/ Création du répertoire de travail.

pi@doompi:~ $ mkdir -p GAME/MINETEST
pi@doompi:~ $ cd GAME/MINETEST/
pi@doompi:~/GAME/MINETEST $

3/ Téléchargement du code source.

pi@doompi:~/GAME/MINETEST $ git clone https://github.com/minetest/minetest.git
pi@doompi:~/GAME/MINETEST $ cd minetest/
pi@doompi:~/GAME/MINETEST/minetest $

4/ Récupération du tag de la version stable.

pi@doompi:~/GAME/MINETEST/minetest $ git checkout tags/5.4.0

5/ Création de la branche stable.

pi@doompi:~/GAME/MINETEST/minetest $ git checkout -b 5.4.0

6/ Configuration de la compilation.

pi@doompi:~/GAME/MINETEST/minetest $ cmake . -DRUN_IN_PLACE=TRUE -DBUILD_SERVER=TRUE -DENABLE_LUAJIT=TRUE -DENABLE_FREETYPE=TRUE -DENABLE_GETTEXT=TRUE -DENABLE_CURL=TRUE -DENABLE_GLES=TRUE -DCMAKE_BUILD_TYPE=Release

7/ Compilation de Minetest.

pi@doompi:~/GAME/MINETEST/minetest $ make -j2
pi@doompi:~/GAME/MINETEST/minetest $ cd ../..

8/ Télécharger le jeu Minetest.

pi@doompi:~/GAME/MINETEST $ git clone https://github.com/minetest/minetest_game.git
pi@doompi:~/GAME/MINETEST $ cd minetest_game/
pi@doompi:~/GAME/MINETEST/minetest_game $

9/ Récupération du tag de la version stable.

pi@doompi:~/GAME/MINETEST/minetest_game $ git checkout tags/5.4.0

10/ Création de la branche stable.

pi@doompi:~/GAME/MINETEST/minetest_game $ git checkout -b 5.4.0

11/ Installation du jeu Minetest.

pi@doompi:~/GAME/MINETEST/minetest_game $ cd ../minetest/games/
pi@doompi:~/GAME/MINETEST/minetest/games $ ln -s ../../minetest_game/

12/ Configuration.

pi@doompi:~/GAME/MINETEST/minetest/games $ cp minetest_game/minetest.conf.example  minetest_game/minetest.conf

Ouvrir :

minetest_game/minetest.conf

Chercher :

#creative_mode =

Remplacer par :

creative_mode = true
name = superadminmt
server_name = Serveur Minetest (FR)
enable_damage = false
enable_pvp = false
default_privs = interact,shout,fast,fly,fast,home,settime,privs
max_users = 100
pi@doompi:~/GAME/MINETEST/minetest/games $ cd ../bin/
pi@doompi:~/GAME/MINETEST/minetest/bin $

13/ Lancement du serveur Minetest.

pi@doompi:~/GAME/MINETEST/minetest/bin $ ./minetestserver

14/ Lancement du client Minetest avec une connexion sur le serveur Minetest.

pi@doompi:~/GAME/MINETEST/minetest/bin $ ./minetest --address 192.168.1.27 --name Sam --go

15/ Activation de privilège.

En mode ‘Singleplayer’, activer la console : /
Activer le privilège pour voler :

/grantme fly

Comments are closed, but trackbacks and pingbacks are open.