Xonotic Forums
My server is refusing to start up. - Printable Version

+- Xonotic Forums (https://forums.xonotic.org)
+-- Forum: Support (https://forums.xonotic.org/forumdisplay.php?fid=3)
+--- Forum: Xonotic - Server Administration (https://forums.xonotic.org/forumdisplay.php?fid=16)
+--- Thread: My server is refusing to start up. (/showthread.php?tid=1407)



My server is refusing to start up. - greasem0nkey - 12-30-2010

Back with some more questions. I'm trying to get a Xonotic preview v 0.1 server going, but I cannot get the server program started. Here's the background info: my server is a crappy p4 1.6ghz w/ 512mb ram, and the os is a fresh install of kubuntu. I read the readme.txt in the server folder, and followed the instructions, customizing my config file and putting it in the data folder w/ the .pk3's. I chmoded +x the server_linux.sh file and marked it executable in the properties tab. After all this, I run server_linux.sh in terminal and it readsConfusederver is not set up properly, read the readme.txt file, blah blah blah. So, any suggestions as to how I can get my server working?


RE: My server is refusing to start up. - hungel - 01-01-2011

Hi
In folder ~/Xonotic/server theare file server_linux.sh
You mast replace it to ~/Xonotic and fix mistake in this file

case "$(uname -m)" in
x86_64) executable="xonotic-linux-x86_64-dedicated" ;;
*) executable="xonotic-linux-686-dedicated" ;;
esac

replace on that

case "$(uname -m)" in
x86_64) executable="xonotic-linux64-dedicated" ;;
*) executable="xonotic-linux32-dedicated" ;;
esac


RE: My server is refusing to start up. - greasem0nkey - 01-03-2011

Thanks for helping out, hungel! Everything is working fine now.