• Contact
  • Contact Us
  • Disclamer
  • Home 1
  • Home 2
  • Home 3
  • Privacy Policy
Friday, May 9, 2025
How VPS - How to use/setup VPS
  • Login
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
How VPS - How to use/setup VPS
No Result
View All Result
Home Operating System Linux

Run Your Own Arma 3 Server on Ubuntu 14

How VPS by How VPS
January 1, 2020
in Linux
0
0
SHARES
171
VIEWS
Share on FacebookShare on Twitter

Contents

  1. Overview
  2. Requirements
  3. Installation
  4. Firewall Rules (UFW)
  5. Want to contribute?


Overview

This guide will cover the installation and operation of your Arma 3 server using SteamCMD and screen. For additional information regarding the configuration, please visit the Bohemia Interactive Wiki or forums.

Requirements

  • ~15 minutes of time.
  • Ubuntu server running 14.04 or 14.10.
  • A basic understanding of Linux commands.
  • A valid steam account. This account doesn’t need to have purchased Arma 3.
  • Vultr VPS (2 CPU, 2GB Memory, 40GB Storage) as a minimum. This configuration may not be suitable for large servers.

Installation

Login as root on the server you will be using for this installation.

We’ll start by acquiring any additional dependencies for both the Arma 3 server and SteamCMD.

Firstly, run the command below to update your server’s list of available packages from the repositories and then upgrade any existing packages.

apt-get update && apt-get upgrade

The Arma 3 server requires lib32stdc++6 which can be installed using:

apt-get install lib32stdc++6

SteamCMD requires lib32gcc1 which can be installed using:

apt-get install lib32gcc1

Screen is often times included with the OS image by default, but you may be required to install it yourself.

apt-get install screen

For security purposes, we do not want to run the server using the root account, so we’ll create a new user named “arma3” with the following command:

useradd arma3

Since we don’t want to block terminal usage while the Arma 3 server is running, we’ve installed screen to allow the server to run on another screen, but we still have to allow our new user arma3 to use screen by running:

chmod o+rw /dev/pts/0

Now that we have acquired all system dependencies, we can now switch to the arma3 user account to start creating some folders and install SteamCMD.

su arma3

As you may of noticed, we are still in the root user’s home directory so lets change over to the arma3 home.

cd ~

To keep our folder structure clean and simple, we’ll create a new folder for SteamCMD and another for the Arma 3 server files.

mkdir steam
mkdir arma3
cd steam

Now that our two folders have been created and we have changed directories to the steam folder, lets download and install SteamCMD using the following commands.

  1. Download the SteamCMD executable.

    wget http://media.steampowered.com/client/steamcmd_linux.tar.gz
    
  2. Extract the contents to the directory.

    tar -xvzf steamcmd_linux.tar.gz
    
  3. Remove the tar file.

    rm -f steamcmd_linux.tar.gz
    
  4. Run and update SteamCMD.

    ./steamcmd.sh
    

Now that we have SteamCMD up and running, lets login to our steam account. Replace user and pass with your steam username and password.

login user pass

Once we login, we can then install Arma 3 to the arma3 directory.

force_install_dir ../arma3
app_update 233780

Once it finishes downloading, you can close SteamCMD by typing in exit. Since we now have the Arma 3 server downloaded, we can now start it by changing to the arma3 directory.

cd ../arma3

… and then starting a new screen to start the server, where armaserver is the screen name.

screen -S armaserver

Run the Arma 3 server. Additional launch parameters can be found on the Bohemia Interactive Wiki.

./arma3server

You can also return to the main screen by hitting Ctrl + A, then D. If you wish to return to the server console, you can do so by using the command below (where “armaserver” is your screen name).

screen -r armaserver

You can close your Arma 3 server at any time by hitting Ctrl + C in the Arma 3 Server console.

Firewall Rules (UFW)

If UFW is enabled, you may have to add a few new rules. This can easily be done with the following commands:

sudo ufw allow from 81.0.236.111 to any port 2344 proto tcp
sudo ufw allow from 81.0.236.111 to any port 2344 proto udp
sudo ufw allow from 81.0.236.111 to any port 2345 proto tcp
sudo ufw allow proto udp to any port 2302:2305

Want to contribute?

You could earn up to $300 by adding new articles

Submit your article
Suggest an update
Request an article
Previous Post

Enabling SNI on DirectAdmin

Next Post

Setting Up Git on Ubuntu 14.04

Next Post

Setting Up Git on Ubuntu 14.04

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

No Result
View All Result

Recent Post

Install Imagemagick on CentOS
CentOS

Install Imagemagick on CentOS

by How VPS
June 28, 2023
0

This is how I installed Imagemagick on a vanilla CentOS server Start off by installing the prerequisites yum install php-pear...

Read more
how to Check phpinfo

How to Check phpinfo of Hosting or VPS?

June 28, 2023
Failed to download metadata for repo 'appstream' on Centos 8

How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

February 25, 2022
How to Fix MySQL Error "Plugin 'InnoDB' registration as a STORAGE ENGINE failed"?

How to Fix MySQL Error “Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed”?

November 17, 2020
How to optimize Mysql or MariaDB

How to optimize Mysql or MariaDB

November 3, 2020

Recent News

  • Install Imagemagick on CentOS
  • How to Check phpinfo of Hosting or VPS?
  • How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

Category

  • Arch
  • Authentication
  • Backups
  • BSD
  • Centmin Mod
  • CentOS
  • Control Panels
  • CoreOS
  • CWP
  • Debian
  • Directadmin
  • Encryption
  • Fedora
  • Firewalls
  • Hocvps Script
  • Hosting providers
  • Kloxo-MR
  • Linux
  • Mitigations
  • Operating System
  • Plesk
  • Reviews
  • Securing VPS/Servers
  • Security Patches
  • SSL Certificates
  • Uncategorized
  • Upgrading
  • VPS/Servers management guides
  • Vulnerability Detection
  • Web servers software
  • Webhosting Control Panel
  • About
  • Advertise
  • Careers
  • Contact

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
Thabet