<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Warsow - HOWTO: dedicated warsow server on linux]]></title>
	<link rel="self" href="http://www.warsow.net/forum/extern.php?action=feed&amp;tid=8758&amp;type=atom"/>
	<updated>2010-02-12T08:13:14Z</updated>
	<generator>PunBB</generator>
	<id>http://www.warsow.net/forum/viewtopic.php?id=8758</id>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101635872#p1101635872"/>
			<content type="html"><![CDATA[<p>who cares not me warsow is fine it worked fine for me <img src="http://www.warsow.net/forum/img/smilies/neutral.png" width="15" height="15" alt="neutral" /></p>]]></content>
			<author>
				<name><![CDATA[roach]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=26420</uri>
			</author>
			<updated>2010-02-12T08:13:14Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101635872#p1101635872</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101561542#p1101561542"/>
			<content type="html"><![CDATA[<p>hi all<br />I have modified a startscript for ts2perlmod to start a warsow server<br />look at this script and give me your opinion about that:<br />_________________________________________________________<br />#! /bin/bash<br /># <br />#<br /># Author:cr@ckm@nix 2008<br />#</p><p>case &quot;$1&quot; in<br />&nbsp; &nbsp; start)<br />&nbsp; &nbsp; &nbsp; &nbsp; if [ -e warsowserver.pid ]; then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;warsowserver.pid already exists...server already started ?&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;If you are sure the server is not running, delete warsowserver.pid&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit 1<br />&nbsp; &nbsp; &nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if [ &quot;$UID&quot; = &quot;0&quot; ]; then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo WARNING ! For security reasons we advise: DO NOT RUN THE SERVER AS ROOT<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for c in $(seq 1 10); do<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo -n &quot;!&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sleep 1<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; done<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo !<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;starting the warsow server&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if [ -e wsw_server ]; then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if [ ! -x wsw_server ]; then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;wsw_server is not executable, trying to set it&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; chmod u+x wsw_server<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if [ -x wsw_server ]; then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ./wsw_server -PID=warsowserver.pid<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;wsw_server is not executable, fix this&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit 4<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;Couldnt find wsw_server&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit 5<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; ;;<br />&nbsp; &nbsp; stop)<br />&nbsp; &nbsp; &nbsp; &nbsp; if [ -e twarsowserver.pid ]; then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo -n &quot;stopping the warsow server&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ( kill -TERM `cat warsowserver.pid` ); then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for c in $(seq 1 300); do<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if [ -e warsowserver.pid ]; then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo -n &quot;.&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sleep 1<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; done<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if [ -e warsowserver.pid ]; then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;server does not shutdown cleanly - killing&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; kill -KILL `cat warsowserver.pid`<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rm warsowserver.pid<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sleep 5<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;done&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; &nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;warsowserver.pid is missing, no started server ?&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit 7<br />&nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; ;;<br />&nbsp; &nbsp; restart)<br />&nbsp; &nbsp; &nbsp; &nbsp; $0 stop &amp;&amp; $0 start || exit 1<br />&nbsp; &nbsp; ;;<br />&nbsp; &nbsp; status)<br />&nbsp; &nbsp; &nbsp; &nbsp; if [ -e warsowserver.pid ]; then<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;the warsow server seems to be running&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit 0<br />&nbsp; &nbsp; &nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;the warsow server seems to be stopped&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit 3<br />&nbsp; &nbsp; &nbsp; &nbsp; fi<br />&nbsp; &nbsp; ;;<br />&nbsp; &nbsp; *)<br />&nbsp; &nbsp; &nbsp; &nbsp; echo &quot;Usage: $0 {start|stop|restart|status}&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; exit 2<br />esac<br />exit 0<br />_________________________________________________________________________</p>]]></content>
			<author>
				<name><![CDATA[crackmanix]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=14967</uri>
			</author>
			<updated>2008-02-26T09:44:07Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101561542#p1101561542</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101560421#p1101560421"/>
			<content type="html"><![CDATA[<p>connect localhost</p>]]></content>
			<author>
				<name><![CDATA[vogelmann]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=5927</uri>
			</author>
			<updated>2008-02-20T09:17:27Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101560421#p1101560421</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101560051#p1101560051"/>
			<content type="html"><![CDATA[<p>hello</p>]]></content>
			<author>
				<name><![CDATA[Gabbellix]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=14874</uri>
			</author>
			<updated>2008-02-18T17:54:33Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101560051#p1101560051</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101558360#p1101558360"/>
			<content type="html"><![CDATA[<p>I&#039;ve faced a problem trying to set up a Warsowserver. <br />The server runs properly as it seems from the servers point of view:</p><div class="quotebox"><blockquote><p>Added pk3 file ./basewsw/tex_terrain_pure.pk3 (6 files)<br />Using /home/serverdator/.warsow for writing<br />Executing: default.cfg<br />Unknown command &quot;unbindall&quot;<br />Executing: dedicated_autoexec.cfg<br />Unknown command &quot;sv_showInfoQueries&quot;<br />Executing: cfgs/dedicated_allaround.cfg<br />Hostname: server.speltips.org<br />Alias: server<br />IP: 192.168.0.106<br />Game running at 62 fps. Server transmit at 20 pps<br />Added new master server #0 at 64.22.107.125:27950<br />Added new master server #1 at 69.59.212.88:27950<br />Added new master server #2 at 129.241.210.90:27950<br />====== Warsow Initialized ======<br />Opening UDP/IP socket: *:44400<br />==== G_Init ====<br />Initialized 42 Items<br />------- Server Initialization -------<br />SpawnServer: wdm7<br />-------------------------------------<br />&nbsp; &nbsp; &nbsp; &nbsp;: AI version: A0058<br />&nbsp; &nbsp; &nbsp; &nbsp;: <br />&nbsp; &nbsp; &nbsp; &nbsp;: loaded nodes:372.<br />&nbsp; &nbsp; &nbsp; &nbsp;: added nodes:48.<br />&nbsp; &nbsp; &nbsp; &nbsp;: total nodes:420.<br />&nbsp; &nbsp; &nbsp; &nbsp;: loaded links:1338.<br />&nbsp; &nbsp; &nbsp; &nbsp;: added links:259.<br />&nbsp; &nbsp; &nbsp; &nbsp;: added jump links:8.<br />&nbsp; &nbsp; &nbsp; &nbsp;: Nodes Initialized.<br />Warning: item_armor_shard (+560.000 -168.000 -112.000) spawns inside solid. Inhibited<br />Warning: item_armor_shard (+600.000 -168.000 -112.000) spawns inside solid. Inhibited<br />Warning: item_armor_shard (+480.000 -168.000 -112.000) spawns inside solid. Inhibited<br />Warning: item_armor_shard (+520.000 -168.000 -112.000) spawns inside solid. Inhibited<br />-------------------------------------<br />Sending heartbeat to matchmaker</p></blockquote></div><p>But I can&#039;t get any response whatsoever connecting to the server.</p><p>I have opened ports 27950 and 44400 (UTP)<br />I simply run the server through the terminal: ./wsw_server.i386</p><p>Any ideas anyone?<br />(ps. Im really bad with linux so please be gentle in your explanations)</p>]]></content>
			<author>
				<name><![CDATA[dendrofil]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=12326</uri>
			</author>
			<updated>2008-02-09T18:14:49Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101558360#p1101558360</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101537186#p1101537186"/>
			<content type="html"><![CDATA[<p>Ahh goodie, then my amd athlon 1.33 ghz with 768 mb mem should be plenty <img src="http://www.warsow.net/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>thanks <img src="http://www.warsow.net/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[ztaale]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=2739</uri>
			</author>
			<updated>2007-10-08T13:37:49Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101537186#p1101537186</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101537177#p1101537177"/>
			<content type="html"><![CDATA[<p>Ehm I ran 2 8player wsw servers on 1 linux machine (Duron 1200 with 768mb ram) with no problems at all. Also ran CA server online for a while (14 players) which ran perfectly on a P3 866mhz with 1gig ram. Never had any probz with it, so a 2.8ghz machine with 2gb ram can handle a lot more than 1 simple wsw server...</p>]]></content>
			<author>
				<name><![CDATA[KoFFiE]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=1935</uri>
			</author>
			<updated>2007-10-08T11:24:36Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101537177#p1101537177</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101537172#p1101537172"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>ztaale wrote:</cite><blockquote><p>Hi, i just wondered, what is the minimum HW requirements for runing a dedicated linux server of wsw.</p><p>tdm.</p></blockquote></div><p>not officially.<br />I&#039;d say a 1Mbit/s connection would be pretty decent for 8players.</p><p>Maybe i was abit unclear <img src="http://www.warsow.net/forum/img/smilies/tongue.png" width="15" height="15" alt="tongue" /><br />Here is graphs of cpu and mem usage on jezus race server with various playerloads: <a href="http://jezus.heliopolis.se/rrd/">http://jezus.heliopolis.se/rrd/</a> (cpu is a 2.8GHz pentium d (one core used) with 2GB ram, u do the math <img src="http://www.warsow.net/forum/img/smilies/tongue.png" width="15" height="15" alt="tongue" />)</p>]]></content>
			<author>
				<name><![CDATA[imhotep]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=1900</uri>
			</author>
			<updated>2007-10-08T10:16:51Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101537172#p1101537172</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101537169#p1101537169"/>
			<content type="html"><![CDATA[<p>Hi, i just wondered, what is the minimum HW requirements for runing a dedicated linux server of wsw.</p><p>tdm.</p>]]></content>
			<author>
				<name><![CDATA[ztaale]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=2739</uri>
			</author>
			<updated>2007-10-08T09:35:37Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101537169#p1101537169</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101525689#p1101525689"/>
			<content type="html"><![CDATA[<p>To keep the log, i use this configuration for logrotate :<br /></p><div class="codebox"><pre><code>host:~# cat /etc/logrotate.d/warsow
/srv/warsow/basewsw/wswconsole.log {
        create
        compress
        copytruncate
        dateext
        nomail
        size 5M
}</code></pre></div><p>You&#039;ll get files like this one :<br /></p><div class="codebox"><pre><code>host:~# ls -l /srv/warsow/basewsw/*.gz
-rw-r--r-- 1 warsow root 58720 2007-07-05 20:24 /srv/warsow/basewsw/wswconsole.log-20070705.gz</code></pre></div>]]></content>
			<author>
				<name><![CDATA[kyuTheKilled]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=11359</uri>
			</author>
			<updated>2007-07-13T14:37:41Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101525689#p1101525689</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101524758#p1101524758"/>
			<content type="html"><![CDATA[<p>I&#039;ve got the same problem and resolved it by merging libvorbis package. I don&#039;t use X environment on my server either - only dedicated USE flag is enabled, but I don&#039;t know why warsow ded. server still need libvorbis.</p>]]></content>
			<author>
				<name><![CDATA[greg.gentoo]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=11402</uri>
			</author>
			<updated>2007-07-07T11:45:16Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101524758#p1101524758</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101522092#p1101522092"/>
			<content type="html"><![CDATA[<p>I just tried to compile the dedicated server in gentoo but ran into a problem. <br />I specified the USE-Flag &quot;dedicated&quot; which avoids a huge load of x11 an mesa deps. But it doesnt compile. <br /></p><div class="codebox"><pre><code>make: *** [buildx86_64/qf/unix_snd.o] Error 1
make: *** Waiting for unfinished jobs....

!!! ERROR: games-fps/warsow-0.3 failed.
Call stack:
  ebuild.sh, line 1615:   Called dyn_compile
  ebuild.sh, line 972:   Called qa_call &#039;src_compile&#039;
  ebuild.sh, line 44:   Called src_compile
  warsow-0.3.ebuild, line 66:   Called die</code></pre></div><p>The error occurs while building sdl/qf stuff. Adding -sdl -qf or -snd to the USE-Flags doesnt change it unfortunately. So how to get rid of that sound stuff correctly?<br />The x86_64 worries me, too, my arch is i686...</p>]]></content>
			<author>
				<name><![CDATA[a1ex]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=10538</uri>
			</author>
			<updated>2007-06-25T15:56:23Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101522092#p1101522092</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101519870#p1101519870"/>
			<content type="html"><![CDATA[<p>I know what I mean its shutdown the server...</p>]]></content>
			<author>
				<name><![CDATA[tripc]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=10365</uri>
			</author>
			<updated>2007-06-12T10:35:44Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101519870#p1101519870</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101519824#p1101519824"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>tripc wrote:</cite><blockquote><p>Sometimes my server crash and dont comeback (i use the script in guide)<br />Why is like that?</p></blockquote></div><p>the server does not always crash, sometimes it just sits there waiting for u to change the map so it can fix itself <img src="http://www.warsow.net/forum/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></content>
			<author>
				<name><![CDATA[imhotep]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=1900</uri>
			</author>
			<updated>2007-06-12T07:16:56Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101519824#p1101519824</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: HOWTO: dedicated warsow server on linux]]></title>
			<link rel="alternate" href="http://www.warsow.net/forum/viewtopic.php?pid=1101519820#p1101519820"/>
			<content type="html"><![CDATA[<p>I run my server with Screen and it runs fine but from time to time it just crashes and you have to restart it. When you connect at that time, you getting into the game but you are just freezed and canÂ´t move. I think also additional RCON Mapchanges and Callvotes for Maps make the Server mess up after a while. As long as it runs with the set mapcycle it runs fine. But as soon as you change something with the maps it gets unstable in time.</p>]]></content>
			<author>
				<name><![CDATA[WarBirD]]></name>
				<uri>http://www.warsow.net/forum/profile.php?id=3151</uri>
			</author>
			<updated>2007-06-12T06:20:25Z</updated>
			<id>http://www.warsow.net/forum/viewtopic.php?pid=1101519820#p1101519820</id>
		</entry>
</feed>
