Slashdot Mirror


More Evidence For Steam Games On Linux

SheeEttin writes "Back in November 2008, Phoronix reported that Linux libraries appeared in the Left 4 Dead demo, and then in March, Valve announced that Steam and the Source engine were coming to Mac OS X. Now, Phoronix reports that launcher scripts included with the (closed beta) Mac version of Steam include explicit support for launching a Linux version."

4 of 256 comments (clear)

  1. Valve servers available for Linux for years by Thunderbird2k · · Score: 5, Informative

    This is no evidence at all. Valve has released dedicated Linux servers for their games for years including steam. Come on don't take phoroCRAP serious. They make news of nothing.

  2. Re:If it comes by Dexy · · Score: 4, Informative

    You mean the shoddy PS3 ports they authorized once, realised how shoddy they were and then never touched again?

  3. Re:Steam on Linux by Lumpy · · Score: 4, Informative

    Because the journalists that coined the phrase were too stupid to know what it meant?

    This term came from the same bunch of idiots that gave us "blogging" and "blogosphere" "web 2.0" and "podcasting" that we are now forever stuck with because they are trendy and catchy...

    Rooting a box means gaining control of the root account. rootkits were typically a kit of tools you used to root a box, to get that root password or escalate your login to root privileges. . What we see as rootkits today are NOT rootkits. They are simply malware that used a bug to get in and run and then they hide themselves. Something that is NOT NEW and has been running around in computing for a very long time.

    --
    Do not look at laser with remaining good eye.
  4. Re:Insufficient data for meaningful answer by themacks · · Score: 4, Informative
    the interesting bits from the script:

    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
    elif [ "$UNAME" == "Linux" ]; then
    PLATFORM=linux32
    # prepend our lib path to LD_LIBRARY_PATH
    export LD_LIBRARY_PATH="${STEAMROOT}"/${PLATFORM}:$LD_LIBRARY_PATH
    fi

    --
    i read about it in a blog once