samedi 10 août 2019

Skyrim together - Docker install onlinux Ubuntu 18.04 LTS

Voici comment mettre en place un serveur pour jouer à Skyrim SE en coop 2 et plus !

 Le serveur  : 

Prérequis

Installation d'une Ubuntu 18.04 LTS

Installation de docker :

sudo apt install docker.io

installation du docker Skyrim together :

sudo docker pull tiltedphoques/st-game-server

Démarrage du serveur

sudo docker run -p 10578:10578/udp tiltedphoques/st-game-server
 

Sur le pc client avec Skyrim :


Telecharger et installer le logiciel Harbor :

Webologie :

https://hub.docker.com/r/tiltedphoques/st-game-server
https://www.reddit.com/r/SkyrimTogether/comments/al0czc/how_to_get_skyrim_together_working/

vendredi 9 août 2019

How to Create an ARK: Survival Evolved Server on Ubuntu 18.04

 

 Install frech install of Ubuntu 18.04 LTS serveur


Installation d'un serveur sous Ubuntu 18.04 LTS serveur


Prérequis :

sudo dpkg --add-architecture i386; sudo apt update; sudo apt install mailutils postfix curl wget file bzip2 gzip unzip bsdmainutils python util-linux ca-certificates binutils bc jq tmux lib32gcc1 libstdc++6 libstdc++6:i386

Increase Open Files Limit


ARK will not run unless you increase the open files limit on your Ubuntu server to a minimum of 100000.

If you're trying to run more than one game server on your system, you will most likely need to increase this limit even higher.


echo "fs.file-max=100000" >> /etc/sysctl.conf && sysctl -p
echo "* soft nofile 100000" >> /etc/security/limits.conf
echo "* hard nofile 100000" >> /etc/security/limits.conf
echo "session required pam_limits.so" >> /etc/pam.d/common-session


1. Create a user and login.


adduser arkserver

note: do NOT set the password as `arkserver` . Use a strong password.
su - arkserver
2. Download linuxgsm.sh.


wget -O linuxgsm.sh https://linuxgsm.sh && chmod +x linuxgsm.sh && bash linuxgsm.sh arkserver


3. Run the installer and follow the instructions.

./arkserver install

Choisir des maps et ajouter des maps personnaliser :


les maps telechargable sur internet doivent être copider dans le dossier du serveur :
/home/arkserver/serverfiles/ShooterGame/Saved

pour modifier la maps de chargement du serveur :

su - arkserver
nano lgsm/config-lgsm/arkserver/arkserver.cfg`

    ajouter :

    maxplayers="5"

    #defaultmap="TheIsland"
    #       defaultmapFiles="TheIsland-nitradoeu19.officialserver186"
            #defaultmapFiles="TheIsland-GGFizz-"
    #defaultmap="Ragnarok"
            #defaultmapFiles="Ragnarok"
            #defaultmapFiles="Ragnarok-GGFizz-Mars2018"
    #defaultmap="CrystalIsles"
    #       defaultmapFiles=${defaultmap}
    #defaultmap="Aberration_P"
            #defaultmapFiles=${defaultmap}
    #       defaultmapFiles="Abberation-GGFizz-Feb_2018"
    defaultmap="ScorchedEarth_P"
            defaultmapFiles=${defaultmap}
    #defaultmap="ScorchedEarth_P"
            #defaultmapFiles=${defaultmap}
    #defaultmap="Extinction"
    #       defaultmapFiles=${defaultmap}

Ajouter des mods à son serveur


Ajouter des mods sur le serveur :

nano serverfiles/ShooterGame/Saved/Config/LinuxServer/GameUserSettings.ini

à ajouter sous : [ServerSettings] sinon ne fonctionne pas :

ActiveMods=731604991,632091170,554678442

Pour aller plus vite coper les mods qui sont sur votre client windows :

D:\Games\Steam\steamapps\common\ARK\ShooterGame\Content\Mods

Sur le serveur dossier :


/home/arkserver/serverfiles/ShooterGame/Content/Mods

Webologie :

https://ericmathison.com/blog/how-to-create-an-ark-survival-evolved-server-on-ubuntu-16-04/
https://linuxgsm.com/lgsm/arkserver/
https://ubuntu.com/download/server

Comment Installer un Serveur Ark Survival Ascend sur Linux avec Docker

 Les fans d'Ark Survival Ascend qui utilisent Linux peuvent désormais se réjouir, car il existe une solution pour déployer un serveur Ar...