How To Install Garry’s Mod Server on CentOS 7

  • Last Created On Dec 08, 2024
  • 8
0 0

In this tutorial, I will explain how to setup a Garry’s Mod server. This tutorial was written for CentOS 7.

Prerequisites

Let’s make sure that the system is fully updated. Create a new user for this server, and be sure to use a strong password.

yum update
yum upgrade -y
adduser gmod
passwd gmod

Open the required firewall ports with firewall-cmd.

firewall-cmd --zone=public --add-port=27015/tcp --permanent
firewall-cmd --zone=public --add-port=27015/udp --permanent
firewall-cmd --reload

Install the required system libraries to run SteamCMD.

yum install glibc.i686 libstdc++.i686 -y

Now, switch to the user that was just created.

su gmod
cd ~

Download SteamCMD by using wget.

wget https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz
tar xf steamcmd_linux.tar.gz

Install the game server files with SteamCMD.

./steamcmd.sh +login anonymous +force_install_dir ./gmod +app_update 4020 validate +quit

When it says Success! App '4020' fully installed., simply type quit and press enter.

The game server is now installed.

Customizing The Server

To change the name of your server, edit the server.cfg file.

nano ~/gmod/garrysmod/cfg/server.cfg

Paste the following into server.cfg and change ServerName and RconPassword to anything you would like.

hostname "ServerName"
rcon_password RconPassword

Updating Your Server

We will create a script so that you can update your server with a single command. First, create the file update_gmod.txt.

nano /home/gmod/update_gmod.txt

Paste in the following:

login anonymous
force_install_dir ./gmod
app_update 4020
quit

To update your server, you just need to run the following command:

cd ~
./steamcmd.sh +runscript update_gmod.txt

Running your server

Navigate to the gmod folder and run your server.

cd /home/gmod/gmod/
screen -dmS gmod ./srcds_run -game garrysmod -console -port 27015 +maxplayers 18 -tickrate 66 +map gm_flatgrass

At this point, your server is now running in the background. You may shut it down at anytime with the following command.

screen -S gmod -X quit

Enjoy your new Garry’s Mod server!

Views: 8

Recent Articles

  • How to Install JAX with ROCm Acceleratio...
    96
  • Deploy a PyTorch Workspace on a Vultr Cl...
    71
  • Managing Backup Storage
    82
  • Automating FTP Backups in Windows Server
    71
  • Automating FTP Backups in Linux
    75

Popular Articles

  • Our General Terms & Conditions
    2630
  • Our Privacy Policy
    2474
  • Our Cookies Policy
    275
  • Our Terms of Use
    152
  • How to Install JAX with ROCm Acceleratio...
    96