Der Steam Console Client oder SteamCMD ist eine Befehlszeilenversion des Steam-Clients. Die Hauptverwendung besteht darin, verschiedene dedizierte Server, die auf Steam verfügbar sind, über eine Befehlszeilenschnittstelle zu installieren und zu aktualisieren. Es funktioniert mit Spielen, die das SteamPipe-Inhaltssystem verwenden. Alle Spiele wurden vom veralteten HLDSUpdateTool auf SteamCMD migriert.
- =[WeAreStars]= | STAR.Community NEW 2020 | GameServer, Tutorials & More... | Community für Streamer und Gamer | ARK Cluster Server + CrossChat + Discord Support | Game *NEWS* | =[WeAreStars]=
SteamCMD
STEAM CMD - HowTo
Windows
1. Create a folder for SteamCMD.
For example
C:\steamcmd
2. Download SteamCMD for Windows: https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip
3. Extract the contents of the zip to the folder.
Linux
Create a user account named steam to run SteamCMD safely, isolating it from the rest of the operating system. Do not run steamcmd while operating as the root user – to do so is a security risk.
1. As the root user, create the steam user:
useradd -m steam
2. Go into its home folder:
cd /home/steam
Package from repositories
1. It’s recommended to install the SteamCMD package from your distribution repositories, if available:
Ubuntu/Debian
sudo apt install steamcmd
Note:If you are using a 64 bit machine you will need to add multiverse
sudo add-apt-repository multiverse sudo dpkg --add-architecture i386 sudo apt update sudo apt install lib32gcc1 steamcmd
RedHat/CentOS
yum install steamcmd
Arch Linux
git clone https://aur.archlinux.org/steamcmd.git cd steamcmd makepkg -si
2. Link the steamcmd executable:
ln -s /usr/games/steamcmd steamcmd
Docker
If your server is running Docker, you can simply use:
docker run -it --name=steamcmd cm2network/steamcmd bash
steamcmd.sh location: /home/steam/steamcmd
This image can be used as a base image for Steam-based dedicated servers. Example: https://hub.docker.com/r/cm2network/csgo/
You can find the associated Docker Hub page here: https://hub.docker.com/r/cm2network/steamcmd/
Manually
1. Before you begin, you must first install the dependencies required to run SteamCMD:
Ubuntu/Debian (x86-64)
sudo apt-get install lib32gcc1
RedHat/CentOS (x86-64)
yum install glibc.i686 libstdc++.i686
2. As the root user, escalate to the steam user:
su - steam
If you’re not logging in as root and you instead use sudo
to perform administration, escalate to the steam user as follows:
sudo -iu steam
3. Create a directory for SteamCMD and switch to it.
mkdir ~/Steam && cd ~/Steam
4. Download and extract SteamCMD for Linux.
curl -sqL "https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz" | tar zxvf -
5. Install tmux and/or screen for easy server management
sudo apt-get install tmux screen -y;
macOS
1. Open Terminal.app and create a directory for SteamCMD.
mkdir ~/Steam && cd ~/Steam
2. Download and extract SteamCMD for macOS.
curl -sqL "https://steamcdn-a.akamaihd.net/client/installer/steamcmd_osx.tar.gz" | tar zxvf -
On first run, SteamCMD will automatically update and enter you into a Steam>
prompt. Type help
for more information.
Windows
Open a Command Prompt and start SteamCMD.
cd C:\steamcmd steamcmd
Linux/macOS
Open a terminal and start SteamCMD.
If you installed it using the package from repositories:
cd ~ steamcmd
If you installed it manually:
cd ~/Steam ./steamcmd.sh
Anonymous
To download most game servers, you can login anonymously.
login anonymous
With a Steam account
Some servers require you to login with a Steam Account.


login <username>
Next enter your password.
If Steam Guard is activated on the user account, check your e-mail for a Steam Guard access code and enter it. This is only required the first time you log in (as well as when you delete the files where SteamCMD stores the login information).
You should see a message stating that you have successfully logged in with your account.
1. Start SteamCMD and log in.
2. Set your app install directory. (Note: use forward slashes for Linux/macOS and backslashes for Windows.)
force_install_dir <path>
e.g. a directory named cs_go
inside the current directory:
force_install_dir ./cs_go/
For Windows: force_install_dir c:\cs_go\
3. Install or update the app using the app_update
command (supplying a Steam Application ID). Please check here for the dedicated server list: Dedicated server list. To also validate the app, add validate
to the command. To download a beta branch, use the -beta <betaname>
option – for example, the HLDS beta branch is named beta
and the SrcDS beta branch is named prerelease
. Some beta branches are protected by a password; to be able to download from them, also add the -betapassword <password>
option.
app_update <app_id> [-beta <betaname>] [-betapassword <password>] [validate]
HLDS is a special case: the App ID is always 90 and a mod must be chosen first. This is done by setting the app config option mod
to the requested value.
app_set_config <app_id> <option_name> <option_value>
- Example: Install and validate the Counter Strike: Global Offensive dedicated server:
app_update 740 validate
- Example: Install and validate HLDS with Team Fortress Classic:
app_set_config 90 mod tfc app_update 90 validate

app_update
command before all the required files are successfully installed. Simply run app_update 90 validate
multiple times until no more updates take place.- Example: Install and validate beta version of HLDS (Half-Life):
app_update 90 -beta beta validate
- Example: install and validate beta version of the Counter Strike: Source dedicated server:
app_update 232330 -beta prerelease validate
- Example: install and validate a private beta version of the Natural Selection 2 dedicated server (name
alpha
, passwordnatsel
): - [beta name] is the name of the private beta branch
- [beta code] is the password for the private beta branch
app_update 4940 -beta alpha -betapassword natsel validate
3. Once finished, type quit
to properly log off of the Steam servers.
quit
Validate
validate
Validate is a command that will check all the server files to make sure they match the SteamCMD files. This command is useful if you think that files may be missing or corrupted.

mapcycle.txt
, this file will be overwritten to the server default. Any files that are not part of the default installation will not be affected.It is recommended you use this command only on initial installation and if there are server issues.
Supported Servers
A list of known servers that use SteamCMD to install is available on the Dedicated Servers List page. Note that any extra commands listed need to be executed before the app_update line.
There are two ways to automate SteamCMD. (Replace steamcmd
with ./steamcmd.sh
on Linux/macOS.)
Command line

-beta
option on the command line, it must be quoted in a special way, such as +app_update "90 -beta beta"
.
"+app_update 90 -beta beta"
instead.Append the commands to the command line prefixed with plus characters, e.g.:
steamcmd +login anonymous +force_install_dir ../csgo_ds +app_update 740 +quit
To install a specific game mod for HL1, such as Counter-Strike: Condition Zero:
steamcmd +login anonymous +force_install_dir ../czero +app_set_config 90 mod czero +app_update 90 +quit
For a game that requires logins, like Killing Floor:
steamcmd +login <username> <password> +force_install_dir c:\KFServer\ +app_update 215350 +quit
Creating a script
1. Put your SteamCMD commands in a text file. (You may add comments which start with //
.) Example:
// update_csgo_ds.txt
//
@ShutdownOnFailedCommand 1 //set to 0 if updating multiple servers at once
@NoPromptForPassword 1
login <username> <password>
//for servers which don't need a login
//login anonymous
force_install_dir ../csgo_ds
app_update 740 validate
quit
2. Run SteamCMD with the +runscript
option, referring to the file you created previously. Example:
steamcmd +runscript csgo_ds.txt
It is possible to choose the platform for which SteamCMD should download files, even if it isn’t the platform it is currently running on. This is done using the @sSteamCmdForcePlatformType
variable. (Yes, those are two “s”es at the beginning of the variable name.) For example, to download the Windows CSGO dedicated server on Linux, you can run the following command:
./steamcmd.sh +@sSteamCmdForcePlatformType windows +login anonymous +force_install_dir ../csgo_ds +app_update 740 validate +quit
or use the following script:
@ShutdownOnFailedCommand 1
@NoPromptForPassword 1
@sSteamCmdForcePlatformType windows
login anonymous
force_install_dir ../csgo_ds
app_update 740 validate
quit
The supported values are windows
, macos
and linux
.
condenser
condenser is a bootstrapper for installing, configuring, & launching Steam dedicated server apps.
SteamCMD AutoUpdater
Install and automatically update any game server
GitHub Repo: https://github.com/C0nw0nk/SteamCMD-AutoUpdate-Any-Gameserver
SteamCMD GUI
This tool allows the user to use SteamCMD on Windows without command lines and/or batch files.
GitHub Repo: https://github.com/DioJoestar/SteamCMD-GUI
SteamCMD Guardian 1.2
View and download here: http://pastebin.com/BRUbsGQh
LinuxGSM
LinuxGSM is the command-line tool for quick, simple deployment and management of Linux dedicated game servers.
Features
- Installer
- Updater
- Monitor
- Alerts
- Server Details
- Backups
- Console
Supported Servers
There are now 100+ different game servers supported and rising. For a full list visit the website.
Links
Website: https://linuxgsm.com
GitHub Repo: https://github.com/GameServerManagers/LinuxGSM
SteamCMD Guardian 1.2
The following script was tested on Debian Wheezy.
View and download here: http://pastebin.com/hcpMpmaZ
Installation
To make this script work, we need a location. Preferably you created a user (e.g. steam) with it’s own home directory (/home/steam) and are logged in as it via SSH, tty or using su.
- Make the file.
nano updateserver.sh
- Paste in the code
- Modify the code, add at least 1 game to the
DL_SV*=
rows. - Close the file with Ctrl+O, followed by ↵ Enter and concluding with Ctrl+X.
- Give the file execute rights for the user
chmod u+x ./updateserver.sh
- Run the file
./updateserver.sh
The file will auto-download SteamCMD, update it and install all chosen games (up to 4). Run the file again to update the games.
ERROR! Failed to install app ‘xxxxxx’ (No subscription)
If you get the ‘No subscription’ error, the game/server you are trying to download either requires a login or that you have purchased the game. You will therefore have to log in with a Steam username and password – if that doesn’t help, you may need to purchase a copy of the game on Steam first. See Dedicated Servers List.

For example
steamcmd +login <username> <password>
32-bit libraries on 64-bit Linux systems
Since SteamCMD is a 32-bit binary, 32-bit libraries are required.
The following error may occur:
steamcmd: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
The resolution depends on your distro:
Debian based distributions (Ubuntu, Mint, etc.)
sudo apt-get install lib32stdc++6

ia32-libs
are not required to install SteamCMD; lib32gcc1
is enough.With Debian 7 “Wheezy” you may encounter this error:
The following packages have unmet dependencies: ia32-libs : Depends: ia32-libs-multiarch but it is not installable E: Unable to correct problems, you have held broken packages.
To fix this, do the following:
dpkg --add-architecture i386
apt-get update
apt-get install lib32gcc1
Red Hat based distributions (RHEL, Fedora, CentOS, etc.)
yum install glibc.i686 libstdc++.i686
Arch Linux
Don’t forget to first enable the multilib repository.
pacman -S lib32-gcc-libs
Login Failure: No Connection
On linux servers, you may experience a “Login Failure: No Connection” error. This is related to missing iptables rules. You will want something along these lines:
iptables -A INPUT -p udp -m udp --sport 27000:27030 --dport 1025:65355 -j ACCEPT
iptables -A INPUT -p udp -m udp --sport 4380 --dport 1025:65355 -j ACCEPT
The port list is found here: https://support.steampowered.com/kb_article.php?ref=8571-GLVN-8711&l=english
On Windows servers, you may experience “SteamUpdater: Error: Download failed: http error 0” and “SteamUpdater: Error: Steam needs to be online to update. Please confirm your network connection and try again.”. This is usually fixed by checking “Automatically detect settings” in IE (Internet Explorer) through the lan settings in the Internet option menu.
- Open Internet Explorer (IE).
- Click on Tools → Internet Options
- Click on the Connections tab
- At the bottom, you should see Local Area Network (LAN) Settings.
- Check the first box (Automatically detect settings)
- Hit OK, and Apply. Try running the SteamCMD again; if it still doesn’t work. try lowering your Internet Security level zone to medium or lower. You can find that in the Security tab in Internet Options.
SteamCMD startup errors
Unable to locate a running instance of Steam
You may get the following error when starting a server with Linux:
[S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.dll.
Resolve the issue by linking steamclient.so
to the ~/.steam/sdk32/steamclient.so
directory:
ln -s steamcmd/linux32/steamclient.so ~/.steam/sdk32/steamclient.so
ulimit Linux startup error
Some users may get a ulimit
error (no permission/cannot open file) while script is starting up. This error caused by a low setting of the -n
parameter (number of file descriptors) of ulimit
. SteamCMD uses standard commands inside of the initialization shell script to change the ulimit
automatically, but some servers may forbid increasing ulimit
values after startup (or beyond a limit set by root
).
This can be fixed by changing the file descriptor number ulimit:
ulimit -n 2048
If an error appears (no permission), you will have to log in as root to change the parameter. To check the current setting, type ulimit -a; the system will reply with many rows, you need to find one:
open files (-n) 1024
In this case, 1024 is the current value.
root
can also modify the limits in the /etc/security/limits.conf
file.
In most instances you will simply get a warning message however it will not stop SteamCMD from running.
Getting a Linux 64-bit steamclient.so on a Windows Machine
WLS does not play nicely with 32-bit files. If you need the steamclient.so 64-bit file you can simply run the following command:
steamcmd.exe +@sSteamCmdForcePlatformType linux +login anonymous +app_update 1007 +quit
You will then find the file here:
.\steamapps\common\Steamworks SDK Redist\linux64
Only the HLDS engine is downloaded
When trying to download a HL1 mod like TFC, initially it only downloads the engine files of the HLDS, but not the mod. This happens with both the regular version and the beta. You may have to try multiple times until all the required files are downloaded, but once this is done, the files should update correctly next time.
Work-around for this issue here: http://danielgibbs.co.uk/2017/10/hlds-steamcmd-workaround-appid-90-part-ii/
Just deleting the appmanifest files, without downloading replacements from a third party, may work as well! You will get an error at first though, complaining that something went wrong, which is due to the deleted files.
On a side note, for some reason CS is always installed as well.
SteamCMD Datenbank 1: https://developer.valvesoftware.com/wiki/Dedicated_Servers_List
SteamCMD Datenbank 2: https://steamdb.info/search/?a=app&q=server
Windows Dedicated Servers
Server | ID | SteamCMD | Steam Client | Anonymous Login | Notes |
---|---|---|---|---|---|
7 Days to Die Dedicated Server | 294420 | Yes | Yes | Yes | |
Assetto Corsa Dedicated Server | 302550 | Yes | Yes | ||
Age of Chivalry Dedicated Server | 17515 | Yes | Yes | Yes | |
Alien Swarm Dedicated Server | 635 | Yes | Yes | Windows version only. | |
Alien Swarm: Reactive Drop Dedicated Server | 582400 | Yes | Yes | Windows version only. Can run on Linux using Wine. | |
Aliens vs Predator Dedicated Server | 34120 | Yes | Yes | ||
America’s Army 3 Dedicated Server | 13180 | Yes | Yes | ||
America’s Army 3 Dedicated Server Beta | 13160 | Yes | |||
America’s Army: Proving Grounds Dedicated Server | 203300 | Yes | Yes | ||
ARK: Survival Evolved Dedicated Server | 376030 | Yes | Yes | Yes | |
ARK: Survival of the Fittest Dedicated Server | 445400 | Yes | |||
ARMA 2 Dedicated Server | 33905 | Yes | |||
Arma 2: Operation Arrowhead Dedicated Server | 33935 | Yes | |||
Arma 3 Dedicated Server | 233780 | Yes | Yes | Game Purchase Required | |
Black Mesa: Deathmatch Dedicated Server | 346680 | Yes | Yes | Yes | |
Blade Symphony Dedicated Server | 228780 | Yes | Game Purchase Required | ||
Breach Dedicated Server | 72310 | Yes | Yes | ||
BrainBread 2 Dedicated Server | 475370 | Yes | Yes | ||
Brink Dedicated Server | 72780 | Yes | Yes | ||
BlazeRush Dedicated Server | 332850 | Yes | Yes | Yes | |
Capsa Dedicated Server | 667230 | Yes | Yes | ||
Call of Duty: Modern Warfare 3 Dedicated Server | 42750 | Yes | Yes | ||
Chivalry: Deadliest Warrior Dedicated server | 258680 | Yes | Yes | ||
Chivalry: Medieval Warfare Dedicated Server | 220070 | Yes | Yes | ||
Conan Exiles Dedicated Server | 443030 | Yes | Yes | ||
Contagion Dedicated Server | 238430 | Yes | |||
Counter-Strike 1.6 Dedicated Server | 90 | Yes | Yes | ||
Counter-Strike Global Offensive Dedicated Server | 740 | Yes | Yes | Yes | Game Purchase Required for public server, Wiki page |
Counter-Strike: Condition Zero Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod czero” | |
Counter-Strike: Source Dedicated Server | 232330 | Yes | Yes | ||
D.I.P.R.I.P. Dedicated Server | 17535 | Yes | Yes | Yes | |
Dark Messiah of Might & Magic Dedicated Server | 2145 | Yes | Yes | ||
Darkest Hour Dedicated Server | 1290 | Yes | Yes | ||
Day of Defeat Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod dod” | |
Day of Defeat: Source Dedicated Server | 232290 | Yes | Yes | ||
Day of Infamy Dedicated Server | 462310 | Yes | Yes | ||
Deathmatch Classic Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod dmc” | |
Dino D-Day Dedicated Server | 70010 | Yes | Yes | ||
Dayz Dedicated Server | 223350 | Yes | Yes | ||
Double Action Dedicated Server | 317800 | Yes | Yes | ||
Dystopia Dedicated Server | 17585 | Yes | Yes | Yes | |
Eden Star Dedicated Server | 419790 | Yes | Yes | Yes | |
E.Y.E – Dedicated Server | 91720 | Yes | Yes | ||
Empires Dedicated Server | 460040 | Yes | Yes | Yes | |
Eternal Silence Dedicated Server | 17555 | Yes | Yes | Yes | |
Fistful of Frags Server | 295230 | Yes | Yes | ||
The Forest Dedicated Server | 556450 | Yes | Yes | Yes | Windows version only |
Fortress Forever Dedicated Server | 329710 | Yes | Yes | Yes | |
Garry’s Mod Dedicated Server | 4020 | Yes | Yes | ||
GTR Evolution Demo Dedicated Server | 8730 | Yes | Yes | ||
Half-Life 2: Deathmatch Dedicated Server | 232370 | Yes | Yes | ||
Half-Life Deathmatch: Source Dedicated server | 255470 | Yes | Yes | Yes | |
Half-Life Dedicated Server | 90 | Yes | Yes | Yes | |
Half-Life: Opposing Force Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod gearbox” | |
Homefront Dedicated Server | 55280 | Yes | Yes | ||
Hurtworld dedicated server | 405100 | Yes | No | Yes | Bat file for server: Bat file |
Insurgency: Sandstorm Dedicated Server | 581330 | Yes | Yes | Yes | |
Insurgency Dedicated Server | 237410 | Yes | Yes | Yes | |
Insurgency: Modern Infantry Combat Dedicated Server | 17705 | Yes | Yes | Yes | |
Just Cause 2: Multiplayer Dedicated Server | 261140 | Yes | Yes | Yes | |
Killing Floor Beta Dedicated Server | 1273 | Yes | Yes | ||
Killing Floor Dedicated Server Windows | 215350 | Yes | NO | No | Please create a new account or use a pre-existing one, account doesn’t need to own the game; or else you will get the dreaded “ERROR! Failed to install app ‘215360’ (No subscription)” |
Killing Floor 2 Dedicated Server Windows | 232130 | Yes | Yes | Yes | |
Kingdoms Rise Dedicated Server | 265360 | Yes | Yes | Yes | |
Lambda Wars Dedicated Server | 319060 | Yes | Yes | ||
Left 4 Dead 2 Dedicated Server | 222860 | Yes | Yes | Yes | |
Left 4 Dead Dedicated Server | 222840 | Yes | Yes | Yes | |
Life is Feudal: Your Own Dedicated Server | 320850 | Yes | Yes | Yes | |
Mare Nostrum Dedicated Server | Yes | ||||
Monday Night Combat Dedicated Server | 63220 | Yes | Yes | ||
Natural Selection 2 Dedicated Server | 4940 | Yes | Yes | ||
Nexuiz Dedicated Server | 96810 | Yes | Yes | ||
No More Room in Hell Dedicated Server | 317670 | Yes | |||
NEOTOKYO Dedicated Server | 313600 | Yes | Yes | ||
NS2: Combat Dedicated Server | 313900 | Yes | Yes | ||
Nuclear Dawn Dedicated Server | 111710 | Yes | Yes | Yes | |
Out of Reach Dedicated Server | 406800 | Yes | Yes | Install guide | |
Painkiller Hell & Damnation Dedicated Server | 230030 | Yes | Yes | ||
Pirates, Vikings, and Knights II Dedicated Server | 17575 | Yes | Yes | Yes | |
Primal Carnage Dedicated Server | 224620 | Yes | |||
Project Zomboid Dedicated Server | 108600 | Yes | Game Purchase Required | ||
RACE 07 Dedicated Server | 8610 | Yes | Yes | ||
RACE 07 Demo – Crowne Plaza Edition Dedicated Server | 8680 | Yes | |||
RACE 07 Demo Dedicated Server | 4270 | Yes | |||
RACE On – Demo: Dedicated Server | 8770 | Yes | Yes | ||
Ravaged Dedicated Server | 223160 | Yes | Yes | ||
Red Orchestra 2 Dedicated Server | 212542 | Yes | |||
Red Orchestra Windows Dedicated Server | 223240 | Yes | Yes | ||
Reflex Dedicated Server | 329740 | Yes | Yes | ||
Reign Of Kings Dedicated Server | 381690 | Yes | Yes | ||
Ricochet Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod ricochet” | |
Rust Dedicated Server | 258550 | Yes | Yes | ** Not Working on Linux with SteamCMD** | |
Sven Co-op Dedicated Server | 276060 | Yes | |||
Serious Sam 3 Dedicated Server | 41080 | Yes | Yes | ||
Serious Sam HD Dedicated Server | 41005 | Yes | Yes | ||
Serious Sam Classics: Revolution Dedicated Server | 41005 | Yes | Yes | ||
Serious Sam HD: The Second Encounter Dedicated Server | 41015 | Yes | Yes | ||
Sniper Elite 3 Dedicated Server | 266910 | Yes | Yes | ||
Sniper Elite V2 Dedicated Server | 208050 | Yes | Yes | ||
Source SDK Base 2006 MP Dedicated Server | 205 | Yes | Yes | Yes | Bug:Linux files missing |
Source 2007 Dedicated Server | 310 | Yes | Yes | Yes | |
Source Dedicated Server | 205 | Yes | Yes | Yes | |
Source SDK Base 2013 Dedicated Server | 244310 | Yes | Yes | Yes | |
Space Engineers Dedicated Server | 298740 | Yes | Yes | Yes | |
Squad Dedicated Server | 403240 | Yes | Yes | Yes | |
Starbound Dedicated server | 211820 | Yes | Yes | Game Purchase Required | |
Starvoid Dedicated Server | 210370 | Yes | Yes | Game Purchase Required | |
STCC – The Game Demo Dedicated Server | 8710 | Yes | Yes | ||
Synergy Dedicated Server | 17525 | Yes | Yes | Yes | |
Takedown: Red Sabre Dedicated Server | 261020 | Yes | Yes | Yes | |
Team Fortress 2 Dedicated Server | 232250 | Yes | Yes | ||
Team Fortress Classic dedicated server | 90 | Yes | Yes | +app_set_config “90 mod tfc” | |
The Haunted: Hells Reach Dedicated Server | 43210 | Yes | Yes | ||
Tower Unite Dedicated server | 439660 | Yes | No | Yes | Official Guide: Dedicated server guide |
The Ship Dedicated Server | 2403 | Yes | Yes | ||
Zombie Panic Source Dedicated Server | 17505 | Yes | Yes | Yes | |
Zombie Grinder Dedicated Server | 374980 | Yes |
Linux Dedicated Servers
Server | ID | SteamCMD | Steam Client | Anonymous Login | Notes |
---|---|---|---|---|---|
7 Days to Die Dedicated Server | 294420 | Yes | Yes | Game purchase required | |
ARK: Survival Evolved Dedicated Server | 376030 | Yes | |||
Arma 3 Dedicated Server | 233780 | Yes | Yes | ||
Black Mesa: Deathmatch Dedicated Server | 346680 | Yes | Yes | Yes | |
BrainBread 2 Dedicated Server | 346330 | Yes | Wiki page | ||
Blade Symphony Dedicated Server | 228780 | Yes | No | Game Purchase Required | |
BlazeRush Dedicated Server | 332850 | Yes | Yes | Yes | |
Counter-Strike Dedicated Server | 90 | Yes | Yes | ||
Counter-Strike Global Offensive Dedicated Server | 740 | Yes | Yes | Game Purchase Required for public server | |
Counter-Strike: Condition Zero Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod czero” | |
Counter-Strike: Source Dedicated Server | 232330 | Yes | Yes | ||
Chivalry Medieval Warfare Dedicated Server | 220070 | Yes | Yes | Yes | |
Dark Horizons: Mechanized Corps Dedicated Server | 312070 | Yes | Yes | ||
Day of Defeat Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod dod” | |
Day of Defeat: Source Dedicated Server | 232290 | Yes | Yes | ||
Day of Infamy Dedicated Server | 462310 | Yes | Yes | ||
Deathmatch Classic Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod dmc” | |
Dota 2 Dedicated Server | 570 | Yes | Yes | No | |
Don’t Starve Together Dedicated Server | 343050 | Yes | Yes | Yes | |
Fistful of Frags Server | 295230 | Yes | Yes | ||
Garry’s Mod Dedicated Server | 4020 | Yes | Yes | ||
Half-Life 2: Deathmatch Dedicated Server | 232370 | Yes | Yes | ||
Hurtworld dedicated server | 405100 | Yes | No | Yes | Bat file for server: Bat file |
Half-Life Deathmatch: Source Dedicated server | 255470 | Yes | Yes | Yes | |
Half-Life Dedicated Server | 90 | Yes | Yes | Yes | Wiki page |
Half-Life: Opposing Force Server | 90 | Yes | Yes | +app_set_config “90 mod gearbox” | |
Insurgency 2014 Dedicated Server | 237410 | Yes | Yes | Yes | |
Insurgency: Modern Infantry Combat Dedicated Server | 17705 | Yes | Yes | Yes | |
Just Cause 2: Multiplayer – Dedicated Server | 261140 | Yes | Yes | Yes | |
Killing Floor Dedicated Server – Linux | 215360 | Yes | No | Please create a new account or use a pre-existing one, account doesn’t need to own the game; or else you will get the dreaded “ERROR! Failed to install app ‘215360’ (No subscription)” | |
Killing Floor 2 Dedicated Server | 232130 | Yes | Yes | Yes | |
Left 4 Dead 2 Dedicated Server | 222860 | Yes | Yes | Yes | |
Left 4 Dead Dedicated Server | 222840 | Yes | Yes | Yes | |
Natural Selection 2 Dedicated Server | 4940 | Yes | Yes | ||
NS2: Combat Dedicated Server | 313900 | Yes | Yes | ||
No More Room In Hell Dedicated Server | 317670 | Yes | Official Page | ||
Out of Reach Dedicated Server | 406800 | Yes | Yes | ||
Pirates, Vikings, and Knights II Dedicated Server | 17575 | Yes | Yes | Yes | |
Project Zomboid Dedicated Server | 108600 | Yes | Game Purchase Required | ||
Red Orchestra Linux Dedicated Server | 223250 | Yes | Yes | ||
Ricochet Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod ricochet” | |
Rust Dedicated Server | 258550 | Yes | Yes | ||
Serious Sam 3 Dedicated Server | 41080 | Yes | Yes | ||
Sven Co-op Dedicated Server | 276060 | Yes | Note: for ubuntu server install apt-get install libssl1.0.0:i386 & for Debian:dpkg –add-architecture i386 apt-get install libstdc++6:i386 libssl1.0.0:i386 | ||
Source SDK Base 2006 MP Dedicated Server | 205 | Yes | Yes | Yes | Bug:Linux files missing |
Source 2007 Dedicated Server | 310 | Yes | Yes | Yes | |
Source Dedicated Server | 205 | Yes | Yes | Yes | |
Source SDK Base 2013 Dedicated Server | 244310 | Yes | Yes | Yes | |
Squad Dedicated Server | 403240 | Yes | Yes | Yes | Official Page |
Starbound Dedicated server | 211820 | Yes | Yes | Game Purchase Required | |
Team Fortress 2 Dedicated Server | 232250 | Yes | Yes | ||
Team Fortress Classic Dedicated Server | 90 | Yes | Yes | +app_set_config “90 mod tfc” | |
The Ship Dedicated Server | 2403 | Yes | Yes | ||
Tower Unite Dedicated Server | 439660 | Yes | No | Yes | |
Terraria Dedicated Server | 105600 | Yes | Yes | ||
Unturned Dedicated Server | 304930 | Yes | Yes | ||
Zombie Panic Source Dedicated Server | 17505 | Yes | Yes | Yes |
© 2022 Made by EliteBaer | Impressum