Cita de: el-brujo en 21 Diciembre 2012, 19:09 PM
http://steamcommunity.com/games/221410/announcements/detail/1747660173332716773
Lista de juegos disponibles para Linux:
http://store.steampowered.com/search/?sort_by=Price&sort_order=ASC&os=linux#category1=998&os=linuxCódigo [Seleccionar]
wget -c http://repo.steampowered.com/steam/archive/precise/steam_latest.deb
sudo dpkg -i steam_latest.deb
Tengan cuidado si tienen una distro de 64 bit.
Asegúrense de tener instaladas todas las bibliotecas de 32 bit:
En la terminal:
Código [Seleccionar]
# apt-get update && apt-get install ia32-libs
Probablemente, a pesar de tener instaladas las dependencias de 32 bit para Steam, igualmente les falle al iniciar (error con steamui.so) causado porque steamui.so depende de libGL.so.*, que no encuentra.
En este caso deben agregar las rutas con la variable LD_LIBRARY_PATH en el script bash de inicio de Steam (llamado /usr/bin/steam):
export LD_LIBRARY_PATH=/usr/lib32:/usr/lib/i386-linux-gnu/mesa:$LD_LIBRARY_PATH
Código [Seleccionar]
#!/bin/bash
#
# This is the Steam script that typically resides in /usr/bin
# It will create the Steam bootstrap if necessary and then launch steam.
# AGREGUEN LA LÏNEA DE ABAJO (export ...), SIEMPRE POR ENCIMA DE CUALQUIER CÖDIGO DE BASH
# buscará la biblioteca compartida libGL.so en las direcciones especificadas
export LD_LIBRARY_PATH=/usr/lib32:/usr/lib/i386-linux-gnu/mesa:$LD_LIBRARY_PATH
# Get the full name of this script
export STEAMSCRIPT="$(cd "${0%/*}" && echo "$PWD")/${0##*/}"
...
si usan una terjeta NVidia, deberán hacer referencia a las bibiotecas compartidas de openGL distribuidas por NVidia:
export LD_LIBRARY_PATH=/usr/lib32:/usr/lib/i386-linux-gnu/mesa:/usr/lib32/nvidia-current:$LD_LIBRARY_PATH
Más informacion en el foro de discusion de Steam Community/linux:
http://steamcommunity.com/app/221410/discussions/0/882966056522497778/