Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save M4cs/70cf5e8975aeb54799f1ac9862c784cf to your computer and use it in GitHub Desktop.
Save M4cs/70cf5e8975aeb54799f1ac9862c784cf to your computer and use it in GitHub Desktop.
Setting Up A SkaterXL Server on Ubuntu 16.04/18.04

Setting Up A SkaterXL Server on Ubuntu 16.04/18.04

Getting Started

First, completely uninstall Wine or get a fresh server to do this on. A fresh server is the best option here.

Next Install wine-stable with the following tutorial: https://tecadmin.net/install-wine-on-ubuntu/

Once you have that installed make sure wine --version returns something like 5.0.1 or above.

Next, run:

apt-get install unrar-free unzip
cd ~
mkdir skaterxl-server
cd skaterxl-server
wget https://dl.winehq.org/wine/wine-mono/5.1.0/wine-mono-5.1.0-x86.msi
wine msiexec /i wine-mono-5.1.0-x86.msi
winetricks corefonts
wget https://github.com/silentbaws/XLMultiplayer/releases/download/v0.8.1/Server.rar
unrar e Server.rar && rm Server.rar
wineconsole XLMultiplayerServer.exe

This is should work to install Wine, Wine Mono and XLMultiplayer on linux.

Adding Public Server Mod

cd ~/skaterxl-server
mkdir PSM
cd PSM
wget https://github.com/M4cs/XLMultiplayer/releases/download/v0.8.1-psm-0.1/XLMultiplayerServer.zip
unzip XLMultiplayerServer.zip
rm ServerConfig.json && mv * ..

Run the same command as normal and you will be running PSM 0.8.1!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment