mirror of
https://github.com/greenseeker/t2server.git
synced 2026-01-19 19:24:46 +00:00
21 lines
670 B
Markdown
21 lines
670 B
Markdown
|
|
# t2server
|
||
|
|
Run a Tribes 2 server on Linux
|
||
|
|
|
||
|
|
## about
|
||
|
|
t2server automates the installation of Tribes 2 and the TribesNEXT patch to run under wine on Linux.
|
||
|
|
After installation, it provides systemd service units and Python scripts for the purpose of managing
|
||
|
|
your server.
|
||
|
|
|
||
|
|
## Prerequisites
|
||
|
|
t2server has a handful of dependencies which are not automatically handled at this time. Before you
|
||
|
|
run the setup script, run the following commands as root depending on your distro:
|
||
|
|
|
||
|
|
### Ubuntu 20.04 LTS
|
||
|
|
```
|
||
|
|
# dpkg --add-architecture i386
|
||
|
|
# apt update
|
||
|
|
# apt install unzip xvfb python3-minimal python3-pip wine32 cpulimit
|
||
|
|
# pip3 install tqdm requests
|
||
|
|
```
|
||
|
|
(more to be tested and added)
|