OTS Guide
Otland Forums
Otland on GitHub
Download TFS
Search…
Introduction
Compiling
Compile on Arch
Compiling on CentOS
Compiling on Debian GNU Linux
Compiling on Fedora
Compiling on FreeBSD
Compiling on Gentoo
Compiling on Mac OS X
Compiling on Ubuntu
Compiling on Windows
Compiling on Windows (vcpkg)
Running your first OT Server
TFS documentation
Glossary
Running your first ubuntu linux OT
Powered By
GitBook
Compiling on Ubuntu
1. Install the required software
The following command will install Git, CMake, a compiler and the libraries used by The Forgotten Server.
Git will be used to download the source code, and CMake will be used to generate the build files.
1
$ sudo apt install git cmake build-essential libluajit-5.1-dev libmysqlclient-dev libboost-system-dev libboost-iostreams-dev libboost-filesystem-dev libpugixml-dev libcrypto++-dev libfmt-dev
Copied!
Additional package for Ubuntu
20.04
:
1
$ sudo apt install libboost-date-time-dev
Copied!
2. Download the source code
1
$ git clone --recursive https://github.com/otland/forgottenserver.git
Copied!
3. Generate the build files
1
$ cd forgottenserver
2
$ mkdir build && cd build
3
$ cmake ..
Copied!
4. Build
1
$ make
Copied!
Previous
Compiling on Mac OS X
Next
Compiling on Windows
Last modified
2mo ago
Copy link