I managed to run the C++ 3rd party server fluently with 6 players online.
Here are some instructions how i got it to work:
You will need to compile it for ARMv6.
First of all you need subversion to download the sources of MCServer:
- Code: Select all
sudo apt-get install subversion
Then make a new directory and cd into it:
- Code: Select all
mkdir MCServer
cd MCServer
Then download the source:
- Code: Select all
svn checkout https://mc-server.googlecode.com/svn/trunk/ .
cd into trunk where the sources are:
- Code: Select all
cd trunk
And compile it:
- Code: Select all
make release=1
(Note: This process can take up to 1.5 hours)
After it has finished the binary is at /home/<USERNAME>/MCServer/trunk/MCServer
You can copy it to anywhere else or run it out of that dir.
- Code: Select all
cd MCServer
./MCServer
(If it says Permission denied do "chmod +x MCServer")
It runs at 18 TPS (20 TPS is full speed) with 30 slots, 6 players online, mobs enabled on 448/64 split and no overclocking. Before it will run it needs about 15 min. to generate the world.
Further information in configuring and using the server on:
http://www.mc-server.org/wiki/Good Luck, Felix3008