Einfach und simpel:
- Download CraftBukkit's latest build: CraftBukkit - Recommended Build
- Put the .jar in a folder, for this example we'll use a generic one: ~/craftbukkit
- Move to the above directory in terminal with 'cd ~/craftbukkit'
- Create a new text document in the minecraft folder and name it craftbukkit.sh
- Edit the document and paste this into it:
Code:
#!/bin/sh
BINDIR=$(dirname "$(readlink -fn "$0")")
cd "$BINDIR"
java -Xmx1024M -Xms1024M -jar craftbukkit.jar
- Make the file executable, either by running "chmod +x ~/craftbukkit/craftbukkit.sh" in a terminal, or by changing the permissions in the file's properties.
- Then, in terminal, type '~/craftbukkit/craftbukkit.sh' to run to start the server.
- When you're done playing around, issue the "stop" command in console.
quelle:
falls du etwas spezielles willst, müsstest du sagen was genau um detaillierter darauf eingehen zu können.