vault backup: 2023-07-23 08:48:03

This commit is contained in:
zleyyij 2023-07-23 08:48:03 -06:00
parent 446741f960
commit 43f63af8a9

View File

@ -44,8 +44,10 @@ wget https://piston-data.mojang.com/v1/objects/84194a2f286ef7c14ed7ce0090dba5990
``` ```
# -jar means that you want to run a jarfile (something with the .jar) extension # -jar means that you want to run a jarfile (something with the .jar) extension
# -Xmx is the maximum amount of memory your server will be allowed to use # -Xmx is the maximum amount of memory your server will be allowed to use
# -Xms is the amount of memory your serve # -Xms is the amount of memory your server will be allocated when it starts
java -jar -Xmx # these two take values in format of NUMBERUNIT, so 3G would be 3 gigabytes,
# 512M would be 512 megabytes
java -jar -Xmx4G
``` ```
This enables minecraft to run in the background, restart if it crashes, etc etc. This enables minecraft to run in the background, restart if it crashes, etc etc.