Anyone know how to add more ram in ftb infinity windows 8?

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

dvsfreak

New Member
Jul 29, 2019
2
0
0
So i am hosting my own ftb server and it is super laggy we made a quarry and it crashes the server it comes default with 1gb i would like to add more is there a way to do that on windows 8? (new to the forums)
 
edit the ServerStart.bat file with something like notepad and use that to run the server. I'm sorry but I currently don't have an example file but you can use google to find out what you need to edit
 
OS shouldn't matter as long as it is 64 bit.
from http://www.minecraftforum.net/forum...7-tutorial-allocate-more-memory-for-minecraft
I want more RAM, not only 2GB!
You can adapt the numbers to your needings:

  • -Xmx is the maximum of RAM wich Minecraft can allocate.
  • -Xms is the allocated RAM at the beginning.
  • -Xms can also be omitted. As result Minecraft will not allocate all Ram at once, but as much as needet.
  • -Xms must not be greater than -Xmx!
Example:

2GB:

-Xmx2048M -Xms2048M (or short -Xmx2G -Xms2G)<br>


3GB:

-Xmx3072M -Xms3072M (or short -Xmx3G -Xms3G)<br>


4GB:

-Xmx4096M -Xms4096M (or short -Xmx4G -Xms4G)<br>


6GB:

-Xmx6144M -Xms6144M (or short -Xmx6G -Xms6G)<br>