Skip to main content

Tutorial - How to create a Server (Linux)

Sometimes it's not enough for one to play on others servers. You want your own, with own maps, own server controller and own power over everything. In this tutorial you will learn how to set up your own server.

This tutorial is for Linux only. For Windows please read our Windows tutorial.

Step 1 - Creating a User

We need to create an extra user and switch to it. Never run a server as root user! So just in case someone could get access to your VPS or dedicated server through the game server, the attacker only has permissions as that user, and not as root.

sudo adduser tmserver

image-1595183148150.png

Choose a secure password, and ignore every other information. Enter Y if asked if this information is correct. Then log into the user we just created.

sudo su - tmserver

Step 2 - Downloading the Server

Now it's time to download and extract the server. To do so, we first use wget to get the file, and then unzip to extract it. You may need to install unzip on your system if not already done.

wget http://files.v04.maniaplanet.com/server/TrackmaniaServer_Latest.zip
unzip -q TrackmaniaServer_Latest.zip -d ./server/

image-1595265912508.png

That way you will extract the files into the ./server directory.