Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Ubuntu 18.04 - Debian 10
- # Pre-requisitos
- sudo apt update
- sudo apt upgrade
- # Debian V
- sudo apt install wget screen dos2unix neofetch
- sudo dpkg --add-architecture i386
- sudo apt-get update
- sudo apt-get install lib32z1 libncurses5:i386 libbz2-1.0:i386 lib32gcc1 lib32stdc++6 libtinfo5:i386 libcurl3-gnutls:i386
- # Descargar SteamCMD
- mkdir Steam && cd Steam
- wget https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz && tar zxf steamcmd_linux.tar.gz && rm steamcmd_linux.tar.gz
- # Crear un archivo que actualize el servidor
- # Requisito: Estar en la carpeta principal del usuario (cd ~)
- # la APPID la pueden encontrar en https://developer.valvesoftware.com/wiki/Dedicated_Servers_List#Linux_Dedicated_Servers
- # Lista del parametro +app_update segun su juego (Solo motor Source):
- #
- # Team Fortress 2 = 232250
- # Counter Strike: Source = 232330
- # Counter Strike: Global Offensive = 740
- # Garry's Mod = 4020
- # Half Life 2: Deathmatch = 232370
- # Half Life Source: Deathmatch = 255470
- # Day Of Defeat Source = 232290
- # Left 4 Dead 2 = 222860
- # Left 4 Dead = 222840
- nano update.sh (
- ./Steam/steamcmd.sh +login anonymous +force_install_dir ./../servidor +app_update APPID +quit
- )
- chmod +x update.sh
- # Iniciar servidor
- # Lista del parametro -game segun su juego (Solo motor Source):
- #
- # Team Fortress 2 = tf
- # Counter Strike: Source = cstrike
- # Counter Strike: Global Offensive = csgo
- # Garry's Mod = garrysmod
- # Half Life 2: Deathmatch = hl2dm
- # Half Life Source: Deathmatch = hl1mp
- # Day Of Defeat Source = dods
- # Left 4 Dead 2 = left4dead2
- # Left 4 Dead = left4dead
- nano start.sh (
- ./servidor/srcds_run -console -game JUEGO +map MAPA +maxplayers JUGADORES
- )
- chmod +x start.sh
Add Comment
Please, Sign In to add comment