<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BenV&#039;s notes &#187; teamspeak</title>
	<atom:link href="http://notes.benv.junerules.com/tag/teamspeak/feed/" rel="self" type="application/rss+xml" />
	<link>http://notes.benv.junerules.com</link>
	<description>Rants and notes</description>
	<lastBuildDate>Wed, 28 Jul 2010 13:36:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Teamspeak 3 / epoll issue fixed</title>
		<link>http://notes.benv.junerules.com/all/software/teamspeak-3-epoll-issue-fixed/</link>
		<comments>http://notes.benv.junerules.com/all/software/teamspeak-3-epoll-issue-fixed/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 15:12:05 +0000</pubDate>
		<dc:creator>BenV</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[glibc]]></category>
		<category><![CDATA[slackware]]></category>
		<category><![CDATA[teamspeak]]></category>

		<guid isPermaLink="false">http://notes.benv.junerules.com/?p=712</guid>
		<description><![CDATA[After a few days of waiting on a reply on the forums I got tired of waiting. So my possible solutions: Either switch to a newer glibc (which probably comes down to upgrading to slackware 13, not in the mood for that) or move the teamspeak server to a new domU. Since it couldn&#8217;t possible [...]]]></description>
			<content:encoded><![CDATA[<p>After a few days of waiting on a reply on the forums I got tired of waiting. So my possible solutions: Either switch to a newer glibc (which probably comes down to upgrading to slackware 13, not in the mood for that) or move the teamspeak server to a new domU. Since it couldn&#8217;t possible *cough* be kernel related, I figured the problem had to be in glibc somewhere.<span id="more-712"></span><br />
To remind you guys of the problem, check out this post: <a href="http://notes.benv.junerules.com/all/software/teamspeak-3/">Teamspeak 3</a>.<br />
Or summarized: starting Teamspeak 3 server beta 16 on Slackware 11 (32 bit) fails with:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000;">2010</span>-01-<span style="color: #000000;">22</span> <span style="color: #000000;">15</span>:<span style="color: #000000;">16</span>:<span style="color: #000000;">12.282194</span><span style="color: #000000; font-weight: bold;">|</span>WARNING <span style="color: #000000; font-weight: bold;">|</span>VirtualServer <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">|</span> <span style="color: #660033;">--------------------------------------------------------</span><br />
terminate called after throwing an instance of <span style="color: #ff0000;">'boost::exception_detail::clone_impl&lt;boost::except ion_detail::error_info_injector&lt;boost::system::sys tem_error&gt; &gt;'</span><br />
what<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>: epoll: Function not implemented<br />
Aborted</div></div>
<p>So I wondered how to figure out the problem. Digging around in libc gave some insight:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ <span style="color: #c20cb9; font-weight: bold;">strings</span> <span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>libc.so.6 <span style="color: #000000; font-weight: bold;">|</span><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-i</span> epoll <br />
epoll_wait<br />
epoll_ctl<br />
epoll_create<br />
warning: epoll_create is not implemented and will always fail<br />
warning: epoll_ctl is not implemented and will always fail<br />
warning: epoll_wait is not implemented and will always fail</div></div>
<p>Say what? Will always fail? That explains&#8230;. but why?!<br />
Apparently there is another libc library that normally gets used that DOES have the proper epoll support, it is in /lib/tls . Weren&#8217;t it that the tls dir was renamed because Xen complained about it, so it doesn&#8217;t get used.</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ &nbsp;<span style="color: #c20cb9; font-weight: bold;">strings</span> <span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>tls.disabled<span style="color: #000000; font-weight: bold;">/</span>libc.so.6 <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> epol <br />
epoll_wait<br />
epoll_ctl<br />
epoll_create<br />
__GI_epoll_ctl<br />
__GI_epoll_wait<br />
__GI_epoll_create<br />
epoll_wait<br />
epoll_ctl<br />
epoll_create</div></div>
<p>No warnings. However, a quick workaround to test this conclusion with LD_PRELOAD:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>teamspeak<span style="color: #000000; font-weight: bold;">/</span>teamspeak_server-b16<span style="color: #666666; font-style: italic;"># LD_PRELOAD=&quot;/lib/tls.disabled/libc.so.6 &nbsp;/lib/tls.disabled/libpthread-2.3.6.so&quot; setuidgid teamspeak ./ts3server_linux_x86</span><br />
TeamSpeak Server 3.0.0-beta16 <span style="color: #7a0874; font-weight: bold;">&#91;</span>Build: <span style="color: #000000;">9929</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
<span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span>TeamSpeak Systems GmbH<br />
<br />
Logging started<br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.448370</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>ServerLibPriv <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> Server Version: 3.0.0-beta16 <span style="color: #7a0874; font-weight: bold;">&#91;</span>Build: <span style="color: #000000;">9929</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.448993</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>DatabaseQuery <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> dbPlugin name: &nbsp; &nbsp;SQLite3 plugin, <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span>TeamSpeak Systems GmbH<br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.449415</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>DatabaseQuery <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> dbPlugin version: 3.6.21<br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.449913</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>DatabaseQuery <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> checking database integrity<br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.605166</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>Accounting &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> Licensing Information<br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.606004</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>Accounting &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #7a0874; font-weight: bold;">type</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: Non-profit<br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.606884</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>Accounting &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> starting <span style="color: #c20cb9; font-weight: bold;">date</span> &nbsp; &nbsp; : Mon Jan <span style="color: #000000;">11</span> 00:00:00 <span style="color: #000000;">2010</span><br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.607657</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>Accounting &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> ending <span style="color: #c20cb9; font-weight: bold;">date</span> &nbsp; &nbsp; &nbsp; : Tue Jan <span style="color: #000000;">11</span> 00:00:00 <span style="color: #000000;">2011</span><br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.608393</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>Accounting &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> max virtualservers: <span style="color: #000000;">10</span><br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.608856</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>Accounting &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> max slots &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">512</span><br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.639110</span><span style="color: #000000; font-weight: bold;">|</span>ERROR &nbsp; <span style="color: #000000; font-weight: bold;">|</span>FileManager &nbsp; <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #7a0874; font-weight: bold;">bind</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> failed: <span style="color: #000000;">98</span><br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.639691</span><span style="color: #000000; font-weight: bold;">|</span>ERROR &nbsp; <span style="color: #000000; font-weight: bold;">|</span>FileManager &nbsp; <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #7a0874; font-weight: bold;">bind</span> failed on 0.0.0.0:<span style="color: #000000;">30033</span><br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.690035</span><span style="color: #000000; font-weight: bold;">|</span>ERROR &nbsp; <span style="color: #000000; font-weight: bold;">|</span>VirtualServer <span style="color: #000000; font-weight: bold;">|</span> &nbsp;<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">|</span> <span style="color: #7a0874; font-weight: bold;">bind</span> failed on 0.0.0.0:<span style="color: #000000;">9987</span><br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.690658</span><span style="color: #000000; font-weight: bold;">|</span>ERROR &nbsp; <span style="color: #000000; font-weight: bold;">|</span>VirtualSvrMgr <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> loading VirtualServer<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> failed to start, error: unable to <span style="color: #7a0874; font-weight: bold;">bind</span> network port<br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.764504</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>VirtualServer <span style="color: #000000; font-weight: bold;">|</span> &nbsp;<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">|</span> stopped<br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.765957</span><span style="color: #000000; font-weight: bold;">|</span>ERROR &nbsp; <span style="color: #000000; font-weight: bold;">|</span>Query &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> 0.0.0.0:<span style="color: #000000;">10011</span> unable to <span style="color: #7a0874; font-weight: bold;">bind</span> error: <span style="color: #000000;">98</span>:Address already <span style="color: #000000; font-weight: bold;">in</span> use<br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.766585</span><span style="color: #000000; font-weight: bold;">|</span>ERROR &nbsp; <span style="color: #000000; font-weight: bold;">|</span>Query &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #7a0874; font-weight: bold;">bind</span> failed on 0.0.0.0:<span style="color: #000000;">10011</span><br />
<span style="color: #000000;">2010</span>-01-<span style="color: #000000;">25</span> 09:<span style="color: #000000;">34</span>:<span style="color: #000000;">17.864334</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>Query &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> whitelist ips: 127.0.0.1,</div></div>
<p>Ha, that&#8217;s more like it. Yeah, it fails to start because I still have the beta 12 running in another dir, but it doesn&#8217;t give the error anymore.</p>
<p>Googling a bit to find some details on Slackware 11 and glibc gave me a discussion somewhere on a mailinglist that mentioned that the glibc in /lib was compiled against<br />
2.4 headers, while the /lib/tls version was compiled against 2.6 headers. That explains!<br />
In other words, time to recompile glibc against the proper headers.<br />
However, that task is a bit too cumbersome to post here. Long story short: it took me half the day to meddle with the glibc.Slackbuild script (and get the right kernel headers installed, etc) and I finally have a new glibc which works.</p>
<p>So, if you&#8217;re looking for a quick fix: use the LD_PRELOAD trick. For the more daring amongst you: upgrade your glibc &#8212; but beware that this is a DANGEROUS thing to do since it will break many things. Of course you could also upgrade to Slackware 13 and be done with it <img src='http://notes.benv.junerules.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://notes.benv.junerules.com/all/software/teamspeak-3-epoll-issue-fixed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Teamspeak 3</title>
		<link>http://notes.benv.junerules.com/all/software/teamspeak-3/</link>
		<comments>http://notes.benv.junerules.com/all/software/teamspeak-3/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 16:09:51 +0000</pubDate>
		<dc:creator>BenV</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[slackware]]></category>
		<category><![CDATA[teamspeak]]></category>
		<category><![CDATA[ventrilo]]></category>

		<guid isPermaLink="false">http://notes.benv.junerules.com/?p=705</guid>
		<description><![CDATA[A week or two ago I installed the latest teamspeak 3 beta on our server to check out how well it works these days. I was impressed by how far they have come. Back when I still played WoW we always used Ventrilo version 2. We never ugpraded to the new 3 version (even though [...]]]></description>
			<content:encoded><![CDATA[<p>A week or two ago I installed the latest teamspeak 3 beta on our server to check out how well it works these days.<br />
I was impressed by how far they have come. Back when I still played WoW we always used Ventrilo version 2. We never ugpraded to the new 3 version (even though thats illegal according to them&#8230;.) because version 3 had a 10 slot limitation on the free server version. Of course they don&#8217;t tell you how much a license for version 3 costs, unless you want to host more than 1000 slots. Paying for Ventrilo would be fine, but paying for 1000 slots? Ha. And yeah, there are hosts that specialize in that (and make you pay through the nose for it), but we wanted to host it ourselves.</p>
<p>Anyway, Teamspeak 3 has a much better view of the world. They offer a -free- personal (that means non commercial!) non-profit license. This means if you&#8217;re a guild you can obtain a license<br />
from them for free <a href="http://npl.tritoncia.com/ts3npl.php">over here</a> which allows you to host your own Teamspeak 3 server with 10 virtual servers and 512 slots. That&#8217;s more like it!<br />
And if you ARE commercial, their licenses are well defined and very affordable. For instance a 1 year license for 25 slots is only $25. Compare that to Ventrilo 2 providers that ask you E10,- per month. Ha.<br />
Oh, did I mention that they DO have a linux client? And windows and mac of course&#8230;. including the 64 bit versions. Lovely <img src='http://notes.benv.junerules.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://notes.benv.junerules.com/wp-content/uploads/2010/01/ts3-beta-linux-client.png"><img src="http://notes.benv.junerules.com/wp-content/uploads/2010/01/ts3-beta-linux-client-300x290.png" alt="" title="ts3-beta-linux-client" width="300" height="290" class="alignnone size-medium wp-image-706" /></a></p>
<p>However, as it&#8217;s still in beta I run into some problems every now and then. Today I was asked to upgade the b12 server to the latest. So I tried.<br />
Result:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000;">2010</span>-01-<span style="color: #000000;">22</span> <span style="color: #000000;">15</span>:<span style="color: #000000;">16</span>:<span style="color: #000000;">11.447045</span><span style="color: #000000; font-weight: bold;">|</span>INFO &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span>ServerLibPriv <span style="color: #000000; font-weight: bold;">|</span> &nbsp; <span style="color: #000000; font-weight: bold;">|</span> Server Version: 3.0.0-beta16 <span style="color: #7a0874; font-weight: bold;">&#91;</span>Build: <span style="color: #000000;">9929</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
&nbsp;<span style="color: #7a0874; font-weight: bold;">&#91;</span> blabla <span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
terminate called after throwing an instance of <span style="color: #ff0000;">'boost::exception_detail::clone_impl&lt;boost::exception_detail::error_info_injector&lt;boost::system::system_error&gt; &gt;'</span><br />
&nbsp; what<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>: &nbsp;epoll: Function not implemented<br />
Aborted</div></div>
<p>&#8230;. welcome back my friend&#8230;. <span style="color:#FF0000"><strong>BOOST</strong></span> &#8230;. always the fucking same with that piece of rubbish.<br />
However, to be fair this could very well be a &#8220;learn to code&#8221; problem by teamspeak, but still&#8230; it&#8217;s always boost the brings the curses.<br />
So what is it complaining now? I don&#8217;t have epoll? Seriously? Let&#8217;s see about that.</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># uname -a</span><br />
Linux blue 2.6.32.2-xenU <span style="color: #666666; font-style: italic;">#1 SMP Thu Dec 24 15:55:52 CET 2009 i686 athlon-4 i386 GNU/Linux</span><br />
<span style="color: #666666; font-style: italic;"># zcat /proc/config.gz &nbsp;| grep -i epol</span><br />
<span style="color: #007800;">CONFIG_EPOLL</span>=y</div></div>
<p>So that&#8217;s not it.<br />
The forum has <a href="http://forum.teamspeak.com/showthread.php?t=50088">this thread</a> suggesting it might be glibc that&#8217;s too old.<br />
However, this particular slackware 11 server has glibc version 2.3.6, which should be old enough (according to that forum thread at least). Just in case it&#8217;s not I&#8217;ll try upgrading that later.<br />
In the meanwhile <a href="http://forum.teamspeak.com/showthread.php?t=50376">I created a thread on this problem on the forums</a>, let&#8217;s see what they suggest. I&#8217;ll put updates here.</p>
]]></content:encoded>
			<wfw:commentRss>http://notes.benv.junerules.com/all/software/teamspeak-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
