<?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>The-Source.com &#187; Steam</title>
	<atom:link href="http://www.the-source.com/tag/steam/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.the-source.com</link>
	<description>Free and Open Source Software News and Opinion</description>
	<lastBuildDate>Wed, 22 Dec 2010 01:04:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Official? Steam Coming to Linux</title>
		<link>http://www.the-source.com/2010/05/official-steam-coming-to-linux/</link>
		<comments>http://www.the-source.com/2010/05/official-steam-coming-to-linux/#comments</comments>
		<pubDate>Thu, 13 May 2010 00:59:34 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Steam]]></category>
		<category><![CDATA[Valve]]></category>

		<guid isPermaLink="false">http://www.the-source.com/?p=893</guid>
		<description><![CDATA[Phoronix is justifiably happy, now that Valve has confirmed Steam will be &#8220;available to Linux users in the coming months&#8221;. (We are assuming here the Telegraph is accurate in its reporting.) I think this is a very positive development. First Mover For one thing it shows Valve recognizes that although Linux may be small proportionally, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.phoronix.com/scan.php?page=article&amp;item=valve_steam_announcement&amp;num=1">Phoronix is justifiably happy</a>, now that Valve has confirmed Steam will be &#8220;available to Linux users in the coming months&#8221;. (We are assuming here the Telegraph is accurate in its reporting.)</p>
<p>I think this is a very positive development.</p>
<p><strong>First Mover</strong></p>
<p>For one thing it shows Valve recognizes that although Linux may be small proportionally, it is a growing and profitable user base. (More profitable per user than Windows or Mac according to some measures.)</p>
<p>I expect Valve hopes to stake out first-mover status in the online game delivery arena in the Mac and Linux market. That&#8217;s good because of all the DRM schemes game publishers employ, Steam is the closest to actually being helpful to the end-user.</p>
<p><strong>The Gamers</strong></p>
<p>Valve bringing Half-Life 2 and Team Fortress to Linux it represents the first breaks in one  major dam where Linux falls short of Windows: games.</p>
<p>Many (probably the majority of) gamers have a particular mindset: <em>they want to play the latest games</em>.</p>
<p>I&#8217;m a bit of a gamer myself, and have had to adjust my mindset to enjoying the latest games <em>that have Linux support </em>- which means I have to be content with <strong>far far</strong> fewer titles. Especially the &#8221;big brand&#8221; titles. </p>
<p>Don&#8217;t get me wrong, those that come (Heroes of Newerth, Doom, Quake, etc.) are fantastic and perform perfectly on Linux, but the selection is much smaller.</p>
<p>That&#8217;s a hard sell if you&#8217;re trying to move off of Windows &#8211; how many otherwise-Linux-users do you know that keep a Windows partition or &#8220;only boot to Windows for the games&#8221;?</p>
<p><strong>The remaining dams</strong></p>
<p>Corporate users.</p>
<p>Education.</p>
<p>In both cases, these are &#8220;lock-in&#8221; bases for Windows. People will tend to stick to what they are taught as children (thus Microsoft&#8217;s EDGI and other such bribery programs to make sure Windows is in schools), and people prefer to use the same stuff at home and work (thus home-office licensing plans).</p>
<p>Still, progress is progress and Valve bringing the Steam infrastructure to Linux along with a few &#8220;AAA&#8221; titles is progress indeed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-source.com/2010/05/official-steam-coming-to-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Proof in Steam of Linux Support?</title>
		<link>http://www.the-source.com/2010/04/proof-in-steam-of-linux-support/</link>
		<comments>http://www.the-source.com/2010/04/proof-in-steam-of-linux-support/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 23:12:55 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Phoronix]]></category>
		<category><![CDATA[Steam]]></category>
		<category><![CDATA[Value]]></category>

		<guid isPermaLink="false">http://www.the-source.com/?p=813</guid>
		<description><![CDATA[Oh please! Phoronix is reporting Proof In Steam&#8217;s Mac Client of Linux Support with this tasty tidbit they found: #!/bin/bash # figure out the absolute path to the script being run a bit # non-obvious, the ${0%/*} pulls the path out of $0, cd's into the # specified directory, then uses $PWD to figure out [...]]]></description>
			<content:encoded><![CDATA[<p>Oh please!</p>
<p>Phoronix is reporting <a href="http://www.phoronix.com/scan.php?page=article&amp;item=steam_linux_script&amp;num=1">Proof In Steam&#8217;s Mac Client of Linux Support</a> with this tasty tidbit they found:</p>
<pre>#!/bin/bash

# figure out the absolute path to the script being run a bit
# non-obvious, the ${0%/*} pulls the path out of $0, cd's into the
# specified directory, then uses $PWD to figure out where that
# directory lives - and all this in a subshell, so we don't affect
# $PWD

STEAMROOT=$(cd "${0%/*}" &amp;&amp; echo $PWD)

#determine platform
UNAME=`uname`
if [ "$UNAME" == "Darwin" ]; then
   PLATFORM=osx32
   # prepend our lib path to LD_LIBRARY_PATH
   export DYLD_LIBRARY_PATH="${STEAMROOT}"/${PLATFORM}:$DYLD_LIBRARY_PATH
<strong>elif [ "$UNAME" == "Linux" ]; then
   PLATFORM=linux32
   # prepend our lib path to LD_LIBRARY_PATH
   export LD_LIBRARY_PATH="${STEAMROOT}"/${PLATFORM}:$LD_LIBRARY_PATH
fi</strong>

if [ -z $STEAMEXE ]; then
  STEAMEXE=steam
fi

ulimit -n 2048

# and launch steam
cd "$STEAMROOT"

STATUS=42
while [ $STATUS -eq 42 ]; do
        ${DEBUGGER} "${STEAMROOT}"/${PLATFORM}/${STEAMEXE} $@
        STATUS=$?
        # are we running osx?
        if [ $STATUS -eq 42 -a ${PLATFORM} == "osx32" -a -f Info.plist ]; then
                # are we running from in a bundle?
                exec open "${STEAMROOT}"/../..
        fi
done
exit $STATUS</pre>
<p>There are lots of  good native games for Linux, but the idea that Valve might bring over some of the big guns like Half-Life, Portal, and Team Fortress is near intoxicating for this Linux gamer!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-source.com/2010/04/proof-in-steam-of-linux-support/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

