pages:howtos:debian:supertuxkart-server
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pages:howtos:debian:supertuxkart-server [2022/01/07 18:26] – mischerh | pages:howtos:debian:supertuxkart-server [2022/01/08 17:12] (current) – mischerh | ||
---|---|---|---|
Line 1: | Line 1: | ||
{{tag> | {{tag> | ||
- | ====== How To Build and Run your own SuperTuxKart Server On Debian ====== | + | \\ |
- | How to build and run your own [[https:// | + | |
+ | <WRAP center round info 60%> | ||
+ | This howto, for Fedora Linux, can be found [[pages: | ||
+ | </ | ||
+ | ====== How To Build and Run your own SuperTuxKart Server On Debian | ||
+ | How to build and run your own [[https:// | ||
===== Sources ===== | ===== Sources ===== | ||
Line 14: | Line 19: | ||
Create a user account to run SuperTuxKart with | Create a user account to run SuperTuxKart with | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | useradd -m -s / | + | useradd -m -s / |
- | passwd | + | passwd |
</ | </ | ||
Install the required packages for building the SuperTuxKart server | Install the required packages for building the SuperTuxKart server | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | apt install build-essential cmake libbluetooth-dev libsdl2-dev libcurl4-openssl-dev libenet-dev libfreetype6-dev libharfbuzz-dev libjpeg-dev libogg-dev libopenal-dev libpng-dev libssl-dev libvorbis-dev libmbedtls-dev pkg-config zlib1g-dev | + | apt update |
+ | apt -y install build-essential cmake libbluetooth-dev libsdl2-dev libcurl4-openssl-dev libenet-dev libfreetype6-dev libharfbuzz-dev libjpeg-dev libogg-dev libopenal-dev libpng-dev libssl-dev libvorbis-dev libmbedtls-dev pkg-config zlib1g-dev | ||
</ | </ | ||
Add a little convenience and structure | Add a little convenience and structure | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | apt install tmux vim-nox | + | apt -y install |
- | mkdir -pv /home/supertuxkart/repos/ | + | mkdir -pv /home/supertuxkartuser/repos/ |
</ | </ | ||
<WRAP center round important 60%> | <WRAP center round important 60%> | ||
Line 31: | Line 37: | ||
Clone the SuperTuxKart and SuperTuxKart-Assets repositories. | Clone the SuperTuxKart and SuperTuxKart-Assets repositories. | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | cd /home/supertuxkart/repos/ | + | cd /home/supertuxkartuser/repos/ |
git clone https:// | git clone https:// | ||
svn co https:// | svn co https:// | ||
Line 37: | Line 43: | ||
Compile the server and install it system wide | Compile the server and install it system wide | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | cd /home/supertuxkart/ | + | cd /home/supertuxkartuser/ |
- | mkdir cmake_build | + | mkdir -pv / |
- | cd cmake_build | + | cd / |
cmake -DBUILD_RECORDER=off -DSERVER_ONLY=ON .. | cmake -DBUILD_RECORDER=off -DSERVER_ONLY=ON .. | ||
make -j$(nproc) | make -j$(nproc) | ||
Line 46: | Line 52: | ||
===== online.supertuxkart.net User Account ===== | ===== online.supertuxkart.net User Account ===== | ||
- | A user account at online.supertuxkart.net is required to run the server. You can sign up/create it [[https:// | + | A user account at online.supertuxkart.net is required to run the server. You can sign up/create it [[https:// |
===== User Initialization And SuperTuxKart Server Configuration ===== | ===== User Initialization And SuperTuxKart Server Configuration ===== | ||
Either log in to your Debian box with the user for running the server or //su// to it. | Either log in to your Debian box with the user for running the server or //su// to it. | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | su - supertuxkart | + | su - supertuxkartuser |
</ | </ | ||
- | Use the following command to initialize your installation with your local run-user (named 'supertuxkart' | + | Use the following command to initialize your installation with your local run-user (named 'supertuxkartuser' |
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
supertuxkart --init-user --login=< | supertuxkart --init-user --login=< | ||
Line 59: | Line 65: | ||
Now create the configuration file with the following command | Now create the configuration file with the following command | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | vim /home/supertuxkart/ | + | vim /home/supertuxkartuser/ |
</ | </ | ||
- | <sxh xml; highlight: [5, | + | <sxh xml; highlight: [5, |
<?xml version=" | <?xml version=" | ||
< | < | ||
Line 138: | Line 144: | ||
<!-- Only auto start kart selection when number of connected player is larger than or equals this value, for owner less or ranked server, after start-game-counter reaches 0. --> | <!-- Only auto start kart selection when number of connected player is larger than or equals this value, for owner less or ranked server, after start-game-counter reaches 0. --> | ||
- | < | + | < |
<!-- Automatically end linear race game after 1st player finished for some time (currently his finished time * 0.25 + 15.0). --> | <!-- Automatically end linear race game after 1st player finished for some time (currently his finished time * 0.25 + 15.0). --> | ||
Line 237: | Line 243: | ||
===== Running The Server And Connecting Bots To It ===== | ===== Running The Server And Connecting Bots To It ===== | ||
- | Log in to your Debian box as the run-user ('supertuxkart') and start the SuperTuxKart server in [[https:// | + | Log in to your Debian box as the run-user ('supertuxkartuser') and start the SuperTuxKart server in [[https:// |
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
tmux | tmux | ||
supertuxkart --server-config=supertuxkart_config.xml --network-console | supertuxkart --server-config=supertuxkart_config.xml --network-console | ||
</ | </ | ||
- | Create a new tmux shell by pressing < | + | Create a new tmux shell by pressing < |
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
supertuxkart --connect-now=127.0.0.1: | supertuxkart --connect-now=127.0.0.1: |
pages/howtos/debian/supertuxkart-server.1641579972.txt.gz · Last modified: 2022/01/07 18:26 by mischerh