Installer Steam sur Ubuntu
Steam est une plate-forme commerciale de jeux. Ce guide aide à l'installer sur Ubuntu.
Ce guide est testé sur:
- Ubuntu 13.04 Raring Ringtail
- Ubuntu 15.10 Wily Werewolf
Installation
Mise en place de Steam
Installez Steam s'il est disponible directement pour votre système:
[ -n "$(command apt-cache pkgnames 'steam')" ] \
&& sudo apt-get install steam
Installez les dépendances si nécessaire:
[ -z "$(command apt-cache pkgnames 'steam')" ] \
&& sudo apt-get install python-apt python-xkit \
curl jockey-common xz-utils zenity
Téléchargez le logiciel:
[ -z "$(command apt-cache pkgnames 'steam')" ] \
&& command wget 'http://media.steampowered.com/client/installer/steam.deb' \
--output-document='/tmp/steam.deb'
Installez le logiciel:
[ -z "$(command apt-cache pkgnames 'steam')" ] \
&& sudo dpkg -i '/tmp/steam.deb'
Mise en place de Steam-Login (mode Big Screen)
Détectez le nom de la distribution:
dist="$(command lsb_release -cs)"
Ajoutez le dépôt de Steam Desktop permettant l'accès au Big Screen Steam directement depuis l'écran de login s'il est disponible pour la distribution:
[ -n "$(command wget -q -O- 'http://ppa.launchpad.net/thor27-gmail/steam-desktop/ubuntu/dists/' | command grep "${dist}")" ] \
&& sudo add-apt-repository ppa:thor27-gmail/steam-desktop
Mettez à jour la liste des paquets disponibles:
sudo apt-get update
Installez Steam-Login s'il est disponible directement pour votre système:
[ -n "$(command apt-cache pkgnames 'steam-login')" ] \
&& sudo apt-get install steam-login
[ -z "$(command apt-cache pkgnames 'steam-login')" ] \
&& sudo apt-get install xfwm4 wmctrl libxfce4ui-1-0 libxfce4util7 \
libxfconf-0-2 libxfce4ui-common libxfce4util-common xfconf
Installez Steam-Login depuis le paquet Deb s'il n'est pas disponible depuis les dépôts:
if [ -z "$(command apt-cache pkgnames 'steam-login')" ]; then
command wget 'https://raw.github.com/biapy/howto.biapy.com/master/various/sf-downloader' \
--quiet --no-check-certificate --output-document='/tmp/sf-downloader'
source="$(command bash '/tmp/sf-downloader' --output-directory="/tmp" \
--generic="https://github.com/thor27/steam-login" \
'steam-login' "steam-login_VERSION_all.deb")"
if [ -e "${source}" ]; then
sudo dpkg -i "${source}"
fi
fi
Vous pouvez lancer Steam directement, ou déconnectez vous et choisissez la session Steam avant de vous connecter.
Remerciements
- Merci à Valve (en) pour avoir porté Steam sur GNU/Linux.
- Merci à Thor27 pour Steam-Login (en).