mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-14 23:15:24 +02:00
minecraft: add page (#17124)
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> Co-authored-by: Wiktor Perskawiec <wiktor@perskawiec.cc>
This commit is contained in:
parent
ae394e5a71
commit
cac558ee1d
1 changed files with 20 additions and 0 deletions
20
pages/common/minecraft.md
Normal file
20
pages/common/minecraft.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# minecraft
|
||||
|
||||
> Run a headless Minecraft server.
|
||||
> More information: <https://minecraft.wiki/w/Tutorial:Setting_up_a_Java_Edition_server>.
|
||||
|
||||
- Start a Minecraft server and generate a world if it doesn't exist:
|
||||
|
||||
`java -jar {{path/to/server.jar}} --nogui`
|
||||
|
||||
- Set the minimum and maximum amount of memory a server is allowed to have (Note: Setting them the same prevents lag caused by heap scaling):
|
||||
|
||||
`java -Xms{{1024M}} -Xmx{{2048M}} -jar {{path/to/server.jar}} --nogui`
|
||||
|
||||
- Start a server with a GUI:
|
||||
|
||||
`java -jar {{path/to/server.jar}}`
|
||||
|
||||
- Shut the server down:
|
||||
|
||||
`stop`
|
Loading…
Add table
Reference in a new issue