LCS Admin (5)

LCS Admin

Hosting Project Zomboid on Ubuntu Server

Adapted from this source: https://pzwiki.net/wiki/Dedicated_server Get the latest list of packages, and upgrade. Set your timezone. Create a non-root user. Add them to the sudo group. Logout, and log in as them. apt update apt upgrade timedatectl set-timezone America/Toronto adduser usermod -aG sudo user_name exit…

Continue reading...
LCS Admin

Metabase on Ubuntu Server with PostgreSQL

Installation Official Link: https://www.metabase.com/docs/latest/installation-and-operation/running-metabase-on-docker Initial start and configuration docker run -d -p 3000:3000 -e MB_DB_CONNECTION_URI="jdbc:postgresql://<host>:5432/metabase?user=<username>&password=<password>" --name metabase metabase/metabase:latest Check status docker ps Restart the server sudo docker start metabase See the official directions here Stop the docker container in the terminal sudo docker stop metabse…

Continue reading...
LCS Admin

Hosting Minecraft on Ubuntu Server

Official Minecraft Java information: https://help.minecraft.net/hc/en-us/articles/360058525452-How-to-Setup-a-Minecraft-Java-Edition-Server You can use the Ubuntu Server page to get help and OS installation tips for this step. Make a non-root user and log in as, or switch to, that user. Update your package lists and upgrade. sudo apt update sudo…

Continue reading...
LCS Admin

Hosting OpenTTD on Ubuntu Server

Sources Official game website: https://www.openttd.org/ OpenTTD server information: https://wiki.openttd.org/en/Manual/Server OpenTTD dedicated server information: https://wiki.openttd.org/en/Manual/Dedicated%20server Directions adapted from this source: https://docs.vultr.com/how-to-install-an-openttd-server-on-ubuntu-20-04 Install the packages needed for the game to run. sudo apt install -y fontconfig-config fonts-dejavu-core libasyncns0 libfontconfig1 libpulse0 libsdl2-2.0-0 libsndfile1 libvorbisenc2 libwayland-client0 libwayland-cursor0 libwayland-egl1 libxcursor1…

Continue reading...
LCS Admin

Vintage Story Dedicated on Ubuntu Server

This guide has been adapted from this page: https://wiki.vintagestory.at/Guide:Dedicated_Server You can use the Ubuntu Server page to get OS installation tips. If you follow these exact directions then you can skip a configuration step later. Make a user named vintagestory. Give sudo them permissions. Then…

Continue reading...