This article is a port of “How To Install Unturned on Linux” for Unturned 2.2.5 Ubuntu 16.04.
This guide will teach you how to set up an Unturned 2.2.5 server on an AKLWEB HOST VPS running Ubuntu 16.04.
Note: This is an edited version of Unturned that doesn’t require SteamCMD to install. It also allows you to run multiple server instances, uses less RAM, and runs more efficiently.
Update the system:
apt-get update -yInstall the following packages for the Unturned server to work:
apt-get install screen unzip git -yAdd i386 architecture support:
dpkg --add-architecture i386
apt-get updateThen, install these libraries:
apt-get install lib32stdc++6 mono-runtime mono-reference-assemblies-2.0 libc6-dev-i386 libgcc-4.8-dev:i386 -yDownload the server files:
wget https://github.com/Unturned/server/releases/download/4.2/unturned-linux-dedicated.tar.gzExtract the server files:
tar -zxvf unturned-linux-dedicated.tar.gz
cd unturned-binRun your newly installed Unturned server:
chmod +x dedicated.sh
./dedicated.shAdminCommands is a great way to gain some control over your server when it lacks a console.
unturned-bin directory for this part.Use git To get a clone of the mod files on your server:
git clone https://github.com/Horsuna/Unturned.git
cd UnturnedConfirm that the files got cloned properly using ls, the output should appear as follows:
AdminCommands.dll Assembly-CSharp.dll ModLoader.dll README.mdMove the ModLoader and the AdminCommands into the server’s files:
mv * ../Unturned_Data/Managed/Make a new directory for the AdminCommands mod:
mkdir modsMove the AdminCommands mod into the mods directory
mv AdminCommands.dll mods/You have successfully installed Unturned 2.2.5 with AdminCommands on Ubuntu 16.04.