How to change world's name?

User avatar
Sergey
Member
 
Posts: 362
Joined: Wed Jan 11, 2017 13:28

How to change world's name?

by Sergey » Sun Jan 22, 2017 12:25

Is it safe to change world's name just by renaming corresponding folder in ~/.minetest/worlds/ ?

In world's folder there are many data like metadata, map itself as sqlite database, and so on. Maybe world name is presented there as well.

How to change world's name correctly?
 

CuriousNoob
Member
 
Posts: 74
Joined: Wed Jan 27, 2016 09:43

re : world name change

by CuriousNoob » Sun Jan 22, 2017 13:45

Sergey wrote:Is it safe to change world's name just by renaming corresponding folder in ~/.minetest/worlds/ ?

In world's folder there are many data like metadata, map itself as sqlite database, and so on. Maybe world name is presented there as well.

How to change world's name correctly?


Are you running a complicated setup with multiple servers with multiple configurations and multiple other-things-to-consider..? If so, I have no idea if it's safe to rename, sorry.

But if not, if you're on a simple singleplayer Minetest like myself, read on...

I just used grep to search for a world's name (the text-string) recursively throughout the ~/.minetest folder and it only showed up in the debug.txt log, nowhere else --- suggesting it's not in the world's database or other files.

As a test, I just duplicated a world's folder under a changed name using :

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
cp  -T  -a   ./OLD_WORLD_NAME   ./NEW_WORLD_NAME


and the duplicate showed in the GUI list then seemed to launch okay.

I just renamed the duplicate world's folder with :

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
mv  -T  -v   ./NEW_WORLD_NAME   ./DIFFERENT_WORLD_NAME


and this too showed in the GUI list and seemed to launch okay.

These quick toe-in-the-water tests suggest yes, it's probably safe to rename the folder to a different world name.

So, unless you're multi-gigabytes into an un-backed-up game-world I'd suggest just going ahead and trying it.

But I'm a still-learning noob, so the advice is always ''Make Back-ups'' and please don't experiment if you're not willing to risk breaking everything ;-P

HTH

.
 

User avatar
Sergey
Member
 
Posts: 362
Joined: Wed Jan 11, 2017 13:28

Re: re : world name change

by Sergey » Sun Jan 22, 2017 14:13

CuriousNoob wrote:Are you running a complicated setup with multiple servers with multiple configurations and multiple other-things-to-consider..? If so, I have no idea if it's safe to rename, sorry.

But if not, if you're on a simple singleplayer Minetest like myself, read on...

Yes, I play singleplayer mode. Honestly, I don't understand how to play on servers with many other players. I installed MT not so long ago, about two weeks ago, and I just enjoy playing constructor.
 

CuriousNoob
Member
 
Posts: 74
Joined: Wed Jan 27, 2016 09:43

re : public servers, online worlds, multi-player

by CuriousNoob » Sun Jan 22, 2017 16:40

Sergey wrote:
CuriousNoob wrote:Are you running a complicated setup with multiple servers with multiple configurations and multiple other-things-to-consider..? If so, I have no idea if it's safe to rename, sorry.

But if not, if you're on a simple singleplayer Minetest like myself, read on...

Yes, I play singleplayer mode. Honestly, I don't understand how to play on servers with many other players. I installed MT not so long ago, about two weeks ago, and I just enjoying playing constructor.



Ah, no problem, that's not too tricky ...

Obviously you'll need to be connected to the network where the servers are --- whether it's your mate's LAN or the wider internet.

After you launch the Minetest application, in the GUI window, click the second tab --- labelled ''Client'' --- then give it a moment to grab and update its information.

You'll see stars and numbers and cubes and hearts and crossed swords beside the names of the publicly-available worlds.

Image

The numbers indicate how many players there are logged-in for each server, out of a maximum-number allowed.

The cube/heart/sword icons indicate what type of server it is, what features are enabled --- Creative, Survival, PvP (player vs player fighting/killing).

The stars show Favourites, but you can add/remove those.

Browse down the server-list to see what's there and read the little descriptions ... although don't expect too much, not all are well described in the text-box, and annoyingly, a number of them overflow but there's no scroll-down so they're impossible to fully read.

Some include website addresses for more information, and it's generally a good idea to check those out first before wasting time or bandwidth joining up.

You can often get some idea whether a server is truly for the General Public from the numbers ... if it shows small number-allowed and most of those are taken, e.g. '' 4 / 5 '', it's quite possible it's just a small server for a family's kids and their mates. Remember, there's a wide range of ages and types and temperaments playing Minetest for a whole range of reasons.

Not all those who set up a server are tech-savvy. If you find you try one that's effectively a private server on the public list, just be respectful if asked to leave.

Anyway, once you've decided and selected a server you want to try, double-check any instructions about signing-up --- some servers require you to go to their community-websites.

Otherwise just enter your chosen player-name and a password of your choice and click ''connect'' --- and if that fails it will usually pop up a message telling you why ... name already taken, specific password required on first join which you then change after login, whatever whatever. Many server-owners have naming and password policies for very good reasons.

Once you're accepted/connected, on some servers it may take a couple of minutes to download all the textures and other media, just be patient.

A word of warning : if you're on a metered data-capped internet-connection, the size of the initial-download and the minute-by-minute data-consumption may be something to watch closely --- on some servers I've seen almost 200 MB initial media downloads and then over 1 MB per-minute data-rates ... you can blow through many gigabytes in a month ... ouch!

Most are not that bad.

Finally I would heartily recommend looking at the Servers section of the forum ... there are lots of interesting worlds to explore and the threads in Servers do give some idea of both what to expect and what is expected of you as a player joining them.

Dependent on your own gaming preferences, the most popular servers (by player numbers) may not be the best choices.

Take a little while to audition different servers, follow the guides and rules, and you'll probably settle into some before too long.

Hope you have fun.

.
Attachments
Minetest-GUI-Server-List.png
Minetest-GUI-Server-List.png (95.28 KiB) Viewed 1497 times
 

User avatar
Sergey
Member
 
Posts: 362
Joined: Wed Jan 11, 2017 13:28

Re: How to change world's name?

by Sergey » Sun Jan 22, 2017 17:51

Thank you for detailed review.

But my client tab page looks like this:

Image

2017-01-22_20-48-51_1280x1024.png
2017-01-22_20-48-51_1280x1024.png (24.22 KiB) Viewed 1497 times
 

User avatar
Krock
Member
 
Posts: 3598
Joined: Thu Oct 03, 2013 07:48
GitHub: SmallJoker

Re: How to change world's name?

by Krock » Sun Jan 22, 2017 18:47

Sergey wrote:Thank you for detailed review.

But my client tab page looks like this:
<snip>

There can be several problems that cause this view, but please check first your debug.txt file and terminal output text (start Minetest from command line it there's no terminal).

1) Missing cURL library: run "minetest --version" and look out for the value of USE_CURL. For a value of "=1", goto number 2, otherwise get another Minetest build (0.4.15 prefered) or build your own with cURL
2) The connection timed out: Your connection is simply too slow, check the server list manually
3) You messed with the master server URL or someone changed it for you. Remove the entire line "serverlist_url = ...." from your minetest.conf setting
4) Yet an unknown bug, please report all warning/error messages you can find about it


Sergey wrote:Is it safe to change world's name just by renaming corresponding folder in ~/.minetest/worlds/ ?

Yes. Close all running instances of minetest and simply rename that directory. There will be no problems with it. The functionality of all mods and the world itself will be the same as before, don't worry.
Newest Win32 builds - Find a mod - All my mods
ALL YOUR DONATION ARE BELONG TO PARAMAT (Please support him and Minetest)
New DuckDuckGo !bang: !mtmod <keyword here>
 

User avatar
Sergey
Member
 
Posts: 362
Joined: Wed Jan 11, 2017 13:28

Re: How to change world's name?

by Sergey » Sun Jan 22, 2017 18:59

Krock wrote:1) Missing cURL library: run "minetest --version" and look out for the value of USE_CURL. For a value of "=1", goto number 2, otherwise get another Minetest build (0.4.15 prefered) or build your own with cURL


Terminal's output for minetest --verbose before program's window is appeared.

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
$ minetest --verbose
2017-01-22 21:58:15: INFO[Main]: Using system-wide paths (NOT RUN_IN_PLACE)
2017-01-22 21:58:15: INFO[Main]: Detected share path: /usr/share/minetest
2017-01-22 21:58:15: INFO[Main]: Detected user path: /home/sergey/.minetest
2017-01-22 21:58:15: INFO[Main]: Detected cache path: /home/sergey/.cache/minetest
2017-01-22 21:58:15: WARNING[Main]: Couldn't find a locale directory!
2017-01-22 21:58:15: INFO[Main]: minetest with SER_FMT_VER_HIGHEST_READ=26, VER=0.4.14 BUILD_TYPE=Release RUN_IN_PLACE=0 USE_GETTEXT=1 USE_SOUND=1 USE_CURL=1 USE_FREETYPE=1 USE_LUAJIT=0 STATIC_SHAREDIR="/usr/share/minetest"
2017-01-22 21:58:15: VERBOSE[Main]: log_filename = /home/sergey/.minetest/debug.txt
2017-01-22 21:58:16: VERBOSE[Main]: httpfetch_init: parallel_limit=8
2017-01-22 21:58:16: INFO[Main]: Message locale is now set to: LC_CTYPE=ru_RU.UTF-8;LC_NUMERIC=C;LC_TIME=ru_RU.UTF-8;LC_COLLATE=ru_RU.UTF-8;LC_MONETARY=ru_RU.UTF-8;LC_MESSAGES=ru_RU.UTF-8;LC_PAPER=ru_RU.UTF-8;LC_NAME=ru_RU.UTF-8;LC_ADDRESS=ru_RU.UTF-8;LC_TELEPHONE=ru_RU.UTF-8;LC_MEASUREM
2017-01-22 21:58:16: INFO[Main]: NT=ru_RU.UTF-8;LC_IDENTIFICATION=ru_RU.UTF-8
2017-01-22 21:58:16: VERBOSE[Main]: Determining world path
2017-01-22 21:58:16: INFO[Main]: Searching worlds...
2017-01-22 21:58:16: INFO[Main]:   In /home/sergey/.minetest/worlds:
2017-01-22 21:58:16: INFO[Main]: a1 w4 z4 z8 z7 z11 z3 flat1 z2 z10 f1 z5 z1 z6 z9
2017-01-22 21:58:16: INFO[Main]: 15 found.
2017-01-22 21:58:16: INFO[Main]: Creating default world at [/home/sergey/.minetest/worlds/world]
2017-01-22 21:58:16: VERBOSE[Main]: Determining gameid/gamespec
2017-01-22 21:58:16: INFO[Main]: Using default gameid [minetest]
2017-01-22 21:58:16: INFO[Main]: Using commanded world path [/home/sergey/.minetest/worlds/world]
2017-01-22 21:58:16: INFO[Main]: Irrlicht: Irrlicht Engine version 1.8.4
2017-01-22 21:58:16: WARNING[Main]: Irrlicht: Warning: The library version of the Irrlicht Engine (1.8.4) does not match the version the application was compiled with (1.8.3). This may cause problems.
2017-01-22 21:58:16: INFO[Main]: Irrlicht: Linux 4.1.37-1-MANJARO #1 SMP PREEMPT Wed Dec 28 00:40:11 UTC 2016 x86_64
2017-01-22 21:58:16: INFO[Main]: Irrlicht: Using renderer: OpenGL 3.0
2017-01-22 21:58:16: INFO[Main]: Irrlicht: Gallium 0.4 on NV106: nouveau
2017-01-22 21:58:16: INFO[Main]: Irrlicht: OpenGL driver version is 1.2 or better.
2017-01-22 21:58:16: INFO[Main]: Irrlicht: GLSL version: 1.3
2017-01-22 21:58:16: INFO[Main]: text_height=18
2017-01-22 21:58:16: INFO[Main]: Waiting for other menus
2017-01-22 21:58:16: INFO[Main]: Waited for other menus
2017-01-22 21:58:16: INFO[Main]: Audio: Initializing...
connect(2) call to /dev/shm/jack-1000/default/jack_0 failed (err=Нет такого файла или каталога)
attempt to connect to server failed
2017-01-22 21:58:16: INFO[Main]: Audio: Initialized: OpenAL 1.1 ALSOFT 1.17.2, using OpenAL Soft
2017-01-22 21:58:16: INFO[Main]: GUIEngine: Initializing Lua
2017-01-22 21:58:16: VERBOSE[AsyncWorker-0]: Loading and running script from /usr/share/minetest/builtin/init.lua
2017-01-22 21:58:16: INFO[AsyncWorker-0]: Initializing Asynchronous environment
2017-01-22 21:58:16: VERBOSE[AsyncWorker-1]: Loading and running script from /usr/share/minetest/builtin/init.lua
2017-01-22 21:58:16: INFO[AsyncWorker-1]: Initializing Asynchronous environment
2017-01-22 21:58:16: VERBOSE[AsyncWorker-2]: Loading and running script from /usr/share/minetest/builtin/init.lua
2017-01-22 21:58:16: INFO[AsyncWorker-2]: Initializing Asynchronous environment
2017-01-22 21:58:16: VERBOSE[AsyncWorker-3]: Loading and running script from /usr/share/minetest/builtin/init.lua
2017-01-22 21:58:16: INFO[Main]: SCRIPTAPI: Initialized main menu modules
2017-01-22 21:58:16: VERBOSE[Main]: Loading and running script from /usr/share/minetest/builtin/init.lua
2017-01-22 21:58:16: INFO[AsyncWorker-3]: Initializing Asynchronous environment
2017-01-22 21:58:16: INFO[Main]: Searching worlds...
2017-01-22 21:58:16: INFO[Main]:   In /home/sergey/.minetest/worlds:
2017-01-22 21:58:16: INFO[Main]: a1 w4 z4 z8 z7 z11 z3 flat1 z2 z10 f1 z5 z1 z6 z9
2017-01-22 21:58:16: INFO[Main]: 15 found.
Loaded texture: /usr/share/minetest/textures/base/pack/menu_bg.png
Loaded texture: /usr/share/minetest/games/minetest/menu/header.png
2017-01-22 21:58:16: VERBOSE[Main]: OpenALSoundManager::maintain(): 0 playing sounds, 0 sound names loaded
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.0.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.1.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.2.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.3.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.4.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.5.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.6.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.7.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.8.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.9.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /home/sergey/.minetest/sounds/main_menu.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.0.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.1.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.2.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.3.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.4.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.5.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.6.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.7.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.8.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.9.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.ogg for decoding
2017-01-22 21:58:16: INFO[Main]: OpenALSoundManager: "main_menu" not found.
Loaded texture: /usr/share/minetest/games/minetest/menu/icon.png
Loaded texture: /usr/share/minetest/games/minimal/menu/icon.png
Last edited by Sergey on Sun Jan 22, 2017 22:32, edited 3 times in total.
 

User avatar
Sergey
Member
 
Posts: 362
Joined: Wed Jan 11, 2017 13:28

Re: How to change world's name?

by Sergey » Sun Jan 22, 2017 19:03

Krock wrote:2) The connection timed out: Your connection is simply too slow, check the server list manually

My Internet connection is indeed slow. I know it because I have ADSL connection using phone line with 6MiB for download and 512 KiB for upload.
 

User avatar
Sergey
Member
 
Posts: 362
Joined: Wed Jan 11, 2017 13:28

Re: How to change world's name?

by Sergey » Sun Jan 22, 2017 19:06

Krock wrote:3) You messed with the master server URL or someone changed it for you. Remove the entire line "serverlist_url = ...." from your minetest.conf setting

I am the only user of my computer. And I did not change any config files manually.
Last edited by Sergey on Sun Jan 22, 2017 22:33, edited 1 time in total.
 

User avatar
Sergey
Member
 
Posts: 362
Joined: Wed Jan 11, 2017 13:28

Re: How to change world's name?

by Sergey » Sun Jan 22, 2017 19:06

Krock wrote:
Sergey wrote:Is it safe to change world's name just by renaming corresponding folder in ~/.minetest/worlds/ ?

Yes. Close all running instances of minetest and simply rename that directory. There will be no problems with it. The functionality of all mods and the world itself will be the same as before, don't worry.

Thank you
 


Return to Minetest General

Who is online

Users browsing this forum: No registered users and 11 guests

cron