Skip to content

Enderbyte-Programs/CraftServerSetup

Repository files navigation

Craft Server Setup

A CLI Minecraft Server Manager

Setup and Installation

WINDOWS

The Windows edition uses an installer. Follow the steps in the installer. All dependencies are included.

You may have to dismiss warnings of uncommon programs or even malware from Windows. Please dismiss them as they are false alarms.

Linux

Installing from release tar.xz

  • Download craftserversetup.tar.xz from the latest release

  • Unzip the tar.xz to a directory with tar -xf craftserversetup.tar.xz

  • Open a terminal in that directory cd craftserversetup

  • Run the command ./installer

  • This will install it locally. To install it for everyone, run sudo ./installer

  • To remove it, run ./installer uninstall

  • If for some reason the installer is not executable, run python3 installer

Building from source

Run the following script with or without root (depending on where you want CRSS installed):

set -e
if [ -d "crss-build" ];then
    rm -rf crss-build
fi

mkdir crss-build
pushd crss-build
mkdir crss
mkdir build
git clone https://github.com/Enderbyte-Programs/CraftServerSetup ./crss
git clone https://github.com/Enderbyte-Programs/sbuild-dofile ./build

pushd build
python3 do.py
popd

pushd crss
../build/build/do
popd
popd
echo "Installation finished with no errors."