How to Install Starbound Server on Ubuntu 16.04

This article is a port of "How To Install Starbound Server on CentOS 7" for Ubuntu 16.04

Prerequisites

  • You need to own this game on your Steam account.
  • A sudo user.
  • A Aklweb host Ubuntu 16.04 server instance.

Installing Starbound

Before starting, let's be sure that the system is up-to-date. Then we will create a new user for the server. When prompted, specify a strong, secure password for this user.

sudo apt-get update
sudo apt-get upgrade
adduser starbound
passwd starbound

Let's also open the necessary firewall port.

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

Install the system libraries needed to run SteamCMD.

sudo apt-get install lib32g

Switch to the user account that was created earlier.

su starbound
cd ~

Install the SteamCMD software.

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

Next, we will use SteamCMD to install the game server files. If your Steam account has Steam Guard enabled, you need to check your email inbox for the login code.

./steamcmd.sh
login YourAccount
*input password and steam guard code*

force_install_dir ./starbound
app_update 211820 validate

When the screen reads Success! App '211820' fully installed., simply type quit and press ENTER.

Your Starbound server is now installed.

Customizing the server

Server customization is done by editing the file sbboot.config. Only change the value after the colon :.

nano ~/starbound/linux64/sbboot.config
  • On line 47, change A Starbound Server to the server name desired.
  • On line 48, change 8 to the amount of slots desired.

Updating your server

First, create the file update_starbound.txt.

nano /home/starbound/update_starbound.txt

Populate it with the following contents.

login YourAccount YourPassword
force_install_dir ./starbound
app_update 211820
quit

You can update your server anytime using the following command. Please note that if you have Steam Guard enabled, you will need to enter the code again during the update process.

cd ~ && ./steamcmd.sh +runscript update_starbound.txt

Running your server

To start your server, run these commands.

cd /home/starbound/starbound/linux64
screen -dmS starbound ./starbound_server 

Your server is now running in a screen session. You may shut it down anytime with the following command:

screen -S starbound -X quit
  • Ubuntu, Linux Guides, Game Servers
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Setup Ragnarok Online Server on Ubuntu 14.04 x64

In this article, we are going to setup a Ragnarok Online Server on Ubuntu 14.04 x64. You can be...

Installing Ubuntu Server on Drives Larger Than 2 TB

The following tutorial requires a motherboard that is EFI compatible (most boards since 2012 are...

Enabling root user in Ubuntu

Instructions on how to enable root user in a newly installed Ubuntu server. The root user in...

Install MailCatcher On Ubuntu 14

Introduction MailCatcher is a tool that provides an easy way for developers to inspect emails...

Install PostgreSQL On Ubuntu 14

Introduction PostgreSQL is the world's most advanced open source Relational Database Management...