User Tools

Site Tools


pages:howtos:debian:supertuxkart-server

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
pages:howtos:debian:supertuxkart-server [2022/01/07 16:00] mischerhpages:howtos:debian:supertuxkart-server [2022/01/08 17:12] (current) mischerh
Line 1: Line 1:
 {{tag>howto supertuxkart game server debian}} {{tag>howto supertuxkart game server debian}}
-====== How To Build and Run your own SuperTuxKart Server On Debian ====== +\\ 
-How to build and run your own [[https://supertuxkart.net/|SuperTuxKart]] server on [[https://www.debian.org/|Debian GNU Linux]]. [[https://supertuxkart.net/|SuperTuxKart]] is a 3D open-source arcade racer with a variety characters, tracks, and modes to play.+ 
 +<WRAP center round info 60%> 
 +This howto, for Fedora Linux, can be found [[pages:howtos:fedora:fedora-supertuxkartserver|here]]. 
 +</WRAP> 
 +====== How To Build and Run your own SuperTuxKart Server On Debian 11 ====== 
 +How to build and run your own [[https://supertuxkart.net/|SuperTuxKart]] server on [[https://www.debian.org/|Debian GNU Linux]] 11. [[https://supertuxkart.net/|SuperTuxKart]] is a 3D open-source arcade racer with a variety characters, tracks, and modes to play.
  
 ===== 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 /bin/bash supertuxkart +useradd -m -s /bin/bash supertuxkartuser 
-passwd supertuxkart+passwd supertuxkartuser
 </sxh> </sxh>
 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
 </sxh> </sxh>
 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 git subversion tmux vim-nox 
-mkdir -pv /home/supertuxkart/repos/+mkdir -pv /home/supertuxkartuser/repos/
 </sxh> </sxh>
 <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://github.com/supertuxkart/stk-code.git stk-code git clone https://github.com/supertuxkart/stk-code.git stk-code
 svn co https://svn.code.sf.net/p/supertuxkart/code/stk-assets stk-assets svn co https://svn.code.sf.net/p/supertuxkart/code/stk-assets stk-assets
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/repos/stk-code +cd /home/supertuxkartuser/repos/stk-code 
-mkdir cmake_build +mkdir -pv /home/supertuxkartuser/repos/stk-code/cmake_build 
-cd cmake_build+cd /home/supertuxkartuser/repos/stk-code/cmake_build
 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://online.supertuxkart.net/register.php|here]]. You will receive an e-mail with a link to confirm your e-mail address (yes, you should click on that linke before proceeding).+A user account at online.supertuxkart.net is required to run the server. You can sign up/create it [[https://online.supertuxkart.net/register.php|here]]. You will receive an e-mail with a link to confirm your e-mail address (yes, you should click that link before proceeding).
  
 ===== 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
 </sxh> </sxh>
-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=<YOUR USER @ online.supertuxkart.net> --password=<YOUR PASSWORD @ online.supertuxkart.net> supertuxkart --init-user --login=<YOUR USER @ online.supertuxkart.net> --password=<YOUR PASSWORD @ online.supertuxkart.net>
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/supertuxkart_config.xml+vim /home/supertuxkartuser/supertuxkart_config.xml
 </sxh> </sxh>
-<sxh xml; highlight: [5,11,14,23,26,35,38,59,62,65]; title: /home/supertuxkart/supertuxkart_config.xml>+<sxh xml; highlight: [5,11,14,23,26,35,38,59,62,65,77,167]; title: /home/supertuxkartuser/supertuxkart_config.xml>
 <?xml version="1.0"?> <?xml version="1.0"?>
 <server-config version="6" > <server-config version="6" >
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. -->
-    <min-start-game-players value="2" />+    <min-start-game-players value="1" />
    
     <!-- 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 228: Line 234:
    
     <!-- If true this server will auto add / remove AI connected with network-ai=x, which will kick N - 1 bot(s) where N is the number of human players. Only use this for non-GP racing server. -->     <!-- If true this server will auto add / remove AI connected with network-ai=x, which will kick N - 1 bot(s) where N is the number of human players. Only use this for non-GP racing server. -->
-    <ai-handling value="false" />+    <ai-handling value="true" />
    
     <!-- If true this server will allow AI instance to be connected from anywhere. (other than LAN network only) -->     <!-- If true this server will allow AI instance to be connected from anywhere. (other than LAN network only) -->
Line 236: Line 242:
 </sxh> </sxh>
  
 +===== Running The Server And Connecting Bots To It =====  
 +Log in to your Debian box as the run-user ('supertuxkartuser') and start the SuperTuxKart server in [[https://wiki.nanoscopic.de/doku.php/pages/cheatsheets/tmux|tmux]] 
 +<sxh bash; gutter: false> 
 +tmux
 supertuxkart --server-config=supertuxkart_config.xml --network-console supertuxkart --server-config=supertuxkart_config.xml --network-console
 +</sxh>
 +Create a new tmux shell by pressing <key>C+b</key> followed by <key>c</key>. To add some AI-bots, use the following command 
 +<sxh bash; gutter: false>
 +supertuxkart --connect-now=127.0.0.1:2759 --network-ai=7 --server-password=<YOUR-SUPER-SECURE-SERVER-PASSWORD>
 +</sxh>
 +
 +You can use <key>C+b</key> - <key>n</key> to switch between the two shells and <key>C+b</key> - <key>d</key> to disconnect from tmux (the shells will keep running). To reattach to tmux, use the command
 +<sxh bash; gutter: false>
 +tmux attach
 +</sxh>
 +You can terminate the SuperTuxServer processes by pressing <key>C+c</key>.
 ---- ----
 ~~DISCUSSION~~ ~~DISCUSSION~~
  
pages/howtos/debian/supertuxkart-server.1641571212.txt.gz · Last modified: 2022/01/07 16:00 by mischerh