Page 1 of 1

Minetest + fedora 17 = error

PostPosted: Mon Mar 25, 2013 13:04
by Gabriele
it was so:

I haved instaled 1.4.5 version then starting command "./minetest" happed errors
WARNING: system-wide share not found at "/usr/local/share/minetest"
WARNING: system-wide share not found at "/home/gabriele/minetest/minetest/bin/../share/minetest"
WARNING: system-wide share found at "/home/gabriele/minetest/minetest/bin/.."
then trying this command "./minetest --disable-unittests"
WARNING: system-wide share not found at "/usr/local/share/minetest"
WARNING: system-wide share not found at "/home/gabriele/minetest/minetest/bin/../share/minetest"
WARNING: system-wide share found at "/home/gabriele/minetest/minetest/bin/.."

What i do bad?

PostPosted: Mon Mar 25, 2013 13:51
by Topywo
Did you perhaps install it local? I always do. It's in my homefolder: /home/topywo/minetest-minetest-8f0d29f/bin.

Edit: I use file manager for Lubuntu. I start it by doublclicking the minetest executable.

PostPosted: Mon Mar 25, 2013 15:38
by PilzAdam
How do you have installed it?

PostPosted: Mon Mar 25, 2013 20:35
by prestidigitator
It looks to me like this was compiled to run under normal install directories ("cmake . -DRUN_IN_PLACE=0"), but not actually installed (especially since you are running from a current directory using "./minetest" instead of running from /usr/bin/minetest in the PATH). You'll either want to complete the install (something like "sudo make install" I believe) or compile the game to run from the folder where it was compiled ("cmake . -DRUN_IN_PLACE=1; make -j2").

If you have obtained a pre-compiled package from somewhere, it looks like you have just unpacked it and tried to run it in place instead of actually doing the install.

PostPosted: Fri Mar 29, 2013 17:26
by Gabriele
prestidigitator wrote:It looks to me like this was compiled to run under normal install directories ("cmake . -DRUN_IN_PLACE=0"), but not actually installed (especially since you are running from a current directory using "./minetest" instead of running from /usr/bin/minetest in the PATH). You'll either want to complete the install (something like "sudo make install" I believe) or compile the game to run from the folder where it was compiled ("cmake . -DRUN_IN_PLACE=1; make -j2").

If you have obtained a pre-compiled package from somewhere, it looks like you have just unpacked it and tried to run it in place instead of actually doing the install.


Still warnings :(

PostPosted: Fri Mar 29, 2013 17:27
by Gabriele
PilzAdam wrote:How do you have installed it?


Yes I installed everything and nothing happed new again these WARNINGs

PostPosted: Fri Mar 29, 2013 21:00
by prestidigitator
PilzAdam wrote:HOW do you have installed it?

Emphasis added. Not "DID you install it," but, "HOW have you installed it?" Details would be awesome, or we're probably not going to get very far.