« Don't Starve Together » : différence entre les versions
Aller à la navigation
Aller à la recherche
Page créée avec « {{Infobox Tutoriel| image = DST_logo.jpg| catégorie = Don‘t Starve Together | os = Linux | création = 6/03/2015|}} » |
mAucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
{{Infobox Tutoriel| image = DST_logo.jpg| catégorie = Don‘t Starve Together | os = Linux | création = 6/03/2015|}} | {{Infobox Tutoriel| image = DST_logo.jpg| catégorie = Don‘t Starve Together | os = Linux | création = 6/03/2015|}} | ||
'''Don't Starve Together''' est la suite multiplayer du fameux Don't Starve de Klei Entertainements. | |||
== Installation d'un serveur == | |||
Ce tutoriel a été réalisé sur Debian 7. | |||
=== Installation de Steamcmd === | |||
* Créez un utilisateur non-admin afin d'installer/mettre à jour/utiliser steamcmd | |||
<syntaxhighlight lang="Bash"> | |||
sudo adduser steam | |||
</syntaxhighlight> | |||
* Switchez sur cet utilisateur | |||
<syntaxhighlight lang="Bash"> | |||
su - steam | |||
</syntaxhighlight> | |||
* Téléchargez '''Steamcmd''' | |||
<syntaxhighlight lang="Bash"> | |||
wget http://media.steampowered.com/installer/steamcmd_linux.tar.gz | |||
</syntaxhighlight> | |||
* Créez un répertoire pour le client SteamCMD | |||
<syntaxhighlight lang="Bash"> | |||
mkdir steamcmd | |||
</syntaxhighlight> | |||
* Déplacez-y les archives | |||
<syntaxhighlight lang="Bash"> | |||
mv steamcmd_linux.tar.gz steamcmd/ | |||
</syntaxhighlight> | |||
* Accèdez au susdit répertoire | |||
<syntaxhighlight lang="Bash"> | |||
cd steamcmd | |||
</syntaxhighlight> | |||
* Extrayez-y l'archive | |||
<syntaxhighlight lang="Bash"> | |||
tar -zxvf steamcmd_linux.tar.gz | |||
</syntaxhighlight> | |||
=== Installation de Don't Starve Together === | |||
;prérequis | |||
<syntaxhighlight lang="Bash"> | |||
sudo dpkg --add-architecture i386 #64bit | |||
sudo apt-get update | |||
sudo apt-get install lib32gcc1 #64bit | |||
</syntaxhighlight> | |||
;C'est parti! | |||
* Lancez le client SteamCMD | |||
<syntaxhighlight lang="Bash"> | |||
./steamcmd.sh | |||
</syntaxhighlight> | |||
* Une fois lancé, vous remarquerez que votre '''prompt''' a switché sur {{Bleu|''steam>''}} Il vous faut maintenant vous logguer avec votre compte Steam, afin d'installer les fichiers serveurs | |||
<syntaxhighlight lang="Bash"> | |||
steam>login <username> <password> | |||
steam>force_install_dir ./DST | |||
steam>app_update 343050 | |||
steam>quit | |||
</syntaxhighlight> | |||
* Installation des librairies | |||
<syntaxhighlight lang="Bash"> | |||
cd /home/steam/steamcmd/DST | |||
mkdir ~/dst_lib && cd ~/dst_lib | |||
wget https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libc.so.6 | |||
wget https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libpthread.so.0 | |||
wget https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/librt.so.1 | |||
</syntaxhighlight> | |||
{{Info| Le port par défaut est '''10999'''. Si vous souhaitez créer plusieurs serveurs, il vous faudra indiquer des ports différents ainsi que des répertoires de configuration différents.}} | |||
== Sources et références == | |||
</references> | |||
* article [http://dont-starve-game.wikia.com/wiki/Don%E2%80%99t_Starve_Together_Dedicated_Servers Don’t Starve Together Dedicated Servers] sur dont-starve-game.wikia.com | |||
* Don't Starve Together sur [http://store.steampowered.com/app/322330/?l=french Steam] |
Version du 6 mars 2015 à 08:44
Don't Starve Together | ||||
---|---|---|---|---|
![]() | ||||
Général | ||||
Catégorie | Don‘t Starve Together [edit] | |||
Métadatas | ||||
Création | 6/03/2015 | |||
Dernière révision | 6/03/2015 |
Don't Starve Together est la suite multiplayer du fameux Don't Starve de Klei Entertainements.
Installation d'un serveur
Ce tutoriel a été réalisé sur Debian 7.
Installation de Steamcmd
- Créez un utilisateur non-admin afin d'installer/mettre à jour/utiliser steamcmd
sudo adduser steam
- Switchez sur cet utilisateur
su - steam
- Téléchargez Steamcmd
wget http://media.steampowered.com/installer/steamcmd_linux.tar.gz
- Créez un répertoire pour le client SteamCMD
mkdir steamcmd
- Déplacez-y les archives
mv steamcmd_linux.tar.gz steamcmd/
- Accèdez au susdit répertoire
cd steamcmd
- Extrayez-y l'archive
tar -zxvf steamcmd_linux.tar.gz
Installation de Don't Starve Together
- prérequis
sudo dpkg --add-architecture i386 #64bit
sudo apt-get update
sudo apt-get install lib32gcc1 #64bit
- C'est parti!
- Lancez le client SteamCMD
./steamcmd.sh
- Une fois lancé, vous remarquerez que votre prompt a switché sur steam> Il vous faut maintenant vous logguer avec votre compte Steam, afin d'installer les fichiers serveurs
steam>login <username> <password>
steam>force_install_dir ./DST
steam>app_update 343050
steam>quit
- Installation des librairies
cd /home/steam/steamcmd/DST
mkdir ~/dst_lib && cd ~/dst_lib
wget https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libc.so.6
wget https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libpthread.so.0
wget https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/librt.so.1
Information: Le port par défaut est 10999. Si vous souhaitez créer plusieurs serveurs, il vous faudra indiquer des ports différents ainsi que des répertoires de configuration différents.
Sources et références
</references>
- article Don’t Starve Together Dedicated Servers sur dont-starve-game.wikia.com
- Don't Starve Together sur Steam