Setup SpigotMC

Debian 8

apt-get update
apt-get -y upgrade


Installing curl

apt-get install -y curl

Installing git

apt-get install -y git

Installing Screen

apt-get install screen

Build Tools

mkdir SpigotMC
cd SpigotMC
curl -o BuildTools.jar https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar
git config --global --unset core.autocrlf
java -jar BuildTools.jar

If Everything Worked You Should See The Same Output As Below

Success! Everything compiled successfully. Copying final .jar files now. Copying craftbukkit-1.8.3-R0.1-SNAPSHOT.jar to /home/shawnsshank/SpigotMC/. – Saved as craftbukkit-1.8.3.jar Copying spigot-1.8.3-R0.1-SNAPSHOT.jar to /home/shawnsshank/SpigotMC/. – Saved as spigot-1.8.3.jar


Now lets make the start .sh file

cd /
nano start.sh

Paste in the following…

#!/bin/sh
java -Xms512M -Xmx1536M -XX:MaxPermSize=128M -jar spigot-1*.jar

Making the file executable

chmod +x start.sh

Start the server

./start.sh

Except the EULA

nano eula.txt

Change eula=false to eula=true


Was this helpful?

0 / 0