Page 1 of 1

[SOLVED] Unable to install Minetest system wide

PostPosted: Thu Jan 14, 2016 20:31
by wolf_ram
Hello,

Despite following instruction on how to install Minetest from source on Debian, system wide installation doesn't work.

When I used cmake command with -DRUN_IN_PLACE=FALSE during compilation game had been installed in ~/.minetest folder not in /usr/share/minetest.

Am I missing something?

Re: Unable to install Minetest system wide

PostPosted: Thu Jan 14, 2016 23:20
by kaeza
Need more information. What exactly does not work?

Problems installing? Does not start? Some other error?

Re: Unable to install Minetest system wide

PostPosted: Fri Jan 15, 2016 18:17
by wolf_ram
Post edited to include more details.

Re: Unable to install Minetest system wide

PostPosted: Fri Jan 15, 2016 18:21
by rubenwardy
Did you run sudo make install?

Re: Unable to install Minetest system wide

PostPosted: Fri Jan 15, 2016 19:11
by Calinou
Configuration files will always go in ~/.minetest, so that they are per-user. The game files will go in /usr/ (and /usr/local) once installed using sudo make install.

Re: Unable to install Minetest system wide

PostPosted: Sat Jan 16, 2016 09:29
by wolf_ram
@Calinou

I was aware that config files are stored in ~/.minetest

@rubenwardy @Calinou

In fact I didn't issue command sudo make install to finalize installation. That was the reason that game wasn't installed system wide and it was compiled to the folder where the source code was downloaded.

Thanks for helping me to solve the problem.

BTW make install command is missing in README.txt on Minetest GitHub page.

Re: Unable to install Minetest system wide

PostPosted: Sat Jan 16, 2016 11:20
by Calinou
wolf_ram wrote:BTW make install command is missing in README.txt on Minetest GitHub page.


"make install" is not mandatory to run a Minetest client or server, you can just run the binary that landed in the bin/ folder.

Re: Unable to install Minetest system wide

PostPosted: Sat Jan 16, 2016 12:58
by wolf_ram
I agree.