Skip to content

Instantly share code, notes, and snippets.

@chaojian-zhang
Last active July 26, 2022 21:21
Show Gist options
  • Save chaojian-zhang/5e7eadb534c681cfeb5562c79dbdd03d to your computer and use it in GitHub Desktop.
Save chaojian-zhang/5e7eadb534c681cfeb5562c79dbdd03d to your computer and use it in GitHub Desktop.
Digital Ocean Debian Server Configurations; What commands to run from a clean slate

LFR

Unreal Dedicated Server

  • Transfer LinuxServer.tar game server file over;
# Initialize tmux for persistent session
apt-get update
apt-get install -y tmux
tmux new -s server # tmux a -t server
Ctrl+B + % # Vertical split
Ctrl+B + o # Jump between pane
Ctrl+B + d # Detach
useradd unreal
mkdir /home/unreal
mv LinuxServer.tar /home/unreal
cd /home/unreal
tar -xvf LinuxServer.tar
su unreal
cd ~
./TPGameServer.sh
  • You don't need to open any firewall ports on Debian server
  • A basic $0.007/hr, $5/mo, 1Gb/1cpu, 25Gb, 1000Gb transfer machine is able to run and host a 2-3 people UE4.27 TPTemplate game without issue.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment