Running TES3MP server on an Raspberry PI - TES3MP/TES3MP GitHub Wiki
Running TES3MP-server on an Raspberry PI
Note: not all Raspberry PI's work, you need one that is armv7l or armv8. (check with uname -a
)
This guide presumes you are running Raspbian stretch if you are using another distro look up how to install the dependency on your distro.
To keep this guide as simple as possible we will presume you'll install it in the directory ~/TES3MP-server/
Quickguide: I'm no scrub
#!/bin/bash
sudo apt install libluajit-5.1-2
wget https://github.com/TES3MP/openmw-tes3mp/releases/download/0.7.0-alpha/tes3mp-server-GNU+Linux-armv7l-release-0.7.0-alpha-cb5e24e6c5-ad96473bf5.tar.gz
tar xfz tes3mp-server-GNU+Linux-armv7l-release-0.7.0-alpha-cb5e24e6c5-ad96473bf5.tar.gz
cd TES3MP-server
./tes3mp-server
I'm not an avid GNU+Linux user:
- Install libluajit
- terminal:
sudo apt install libluajit-5.1-2
- Download the latest released archive for arm from: https://github.com/TES3MP/openmw-tes3mp/releases
- The archive looks like this: tes3mp-server-GNU+Linux-armv7l-release-*.tar.gz
- Move the archive to
~/
either with the terminal or an file explorer/browser
- terminal:
mv tes3mp-server-GNU+Linux-* ~/
- Open an terminal and navigate to the home directory
~
- terminal:
cd ~
- Unpack the archive
- terminal:
tar xfz tes3mp-server-GNU+Linux-*
- Go into the folder
- terminal:
cd TES3MP-server
- Execute the server
- terminal:
./tes3mp-server