FTB Server on a Mac

  • 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

TheDude

New Member
Jul 29, 2019
6
0
0
So I've watched and read a few guides, and every time they're using files that just aren't available from the download on the main page. The main issues seems to be the Start_Server.sh file. There are 8 different .bat files for Windows, but nothing for the Mac to run? Anyone know what's up?
 

defakto

New Member
Jul 29, 2019
63
0
0
I'm not a shell script guru, but it should be pretty straight forward to create one.


Open your text edit and put this pulled from Wiki:

#!/bin/bash cd "$(dirname "$0")" exec java -Xmx1G -Xms1G -jar minecraft_server.jar

save the file as something like start.command or start.sh in the minecraft server folder. Then you need to edit permissions to give the script execute, from the cmd line you can do chmod a+x start.sh (I think this is how chmod works it's been a while)

Then from there you should be able to just double click the start.sh file.