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 15:36] – [Hardware Sizing] 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 install | make install | ||
</ | </ | ||
===== 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 |
</ | </ | ||
- | To initialize your | + | Use the following command to initialize your installation with your local run-user (named ' |
+ | <sxh bash; gutter: false> | ||
supertuxkart --init-user --login=< | supertuxkart --init-user --login=< | ||
- | <sxh bash; gutter: false>bash code</ | + | </ |
- | vim supertuxkart_config.xml | + | Now create the configuration file with the following command |
- | + | <sxh bash; gutter: false> | |
+ | vim / | ||
+ | </ | ||
+ | <sxh xml; highlight: [5, | ||
+ | <?xml version=" | ||
+ | < | ||
+ | |||
+ | <!-- Name of server, encode in XML if you want to use unicode characters. --> | ||
+ | < | ||
+ | |||
+ | <!-- Port used in server, if you specify 0, it will use the server port specified in stk_config.xml. If you wish to use a random port, set random-server-port to ' | ||
+ | < | ||
+ | |||
+ | <!-- Game mode in server, 0 is normal race (grand prix), 1 is time trial (grand prix), 3 is normal race, 4 time trial, 6 is soccer, 7 is free-for-all and 8 is capture the flag. Notice: grand prix server doesn' | ||
+ | < | ||
+ | |||
+ | <!-- Difficulty in server, 0 is beginner, 1 is intermediate, | ||
+ | < | ||
+ | |||
+ | <!-- Number of grand prix tracks per game (If grand prix enabled). --> | ||
+ | < | ||
+ | |||
+ | <!-- Use goal target in soccer. --> | ||
+ | < | ||
+ | |||
+ | <!-- Enable wan server, which requires you to have an stk-addons account with a saved session. Check init-user command for details. --> | ||
+ | < | ||
+ | |||
+ | <!-- Enable network console, which can do for example kickban. --> | ||
+ | < | ||
+ | |||
+ | <!-- Maximum number of players on the server, setting this to a value greater than 8 can cause performance degradation. --> | ||
+ | < | ||
+ | |||
+ | <!-- Maximum number of players in the game, all other players on the server are spectators. Specify 0 to allow all players on the server to play. --> | ||
+ | < | ||
+ | |||
+ | <!-- Password for private server, leave empty for a public server. --> | ||
+ | < | ||
+ | |||
+ | <!-- Message of today shown in lobby, you can enter encoded XML words here or a file.txt and let STK load it. --> | ||
+ | <motd value=" | ||
+ | |||
+ | <!-- If this value is set to false, the server will ignore chat messages from all players. --> | ||
+ | <chat value=" | ||
+ | |||
+ | <!-- If client sends more than chat-consecutive-interval / 2 chats within this value (read in seconds), it will be ignore, negative value to disable. --> | ||
+ | < | ||
+ | |||
+ | <!-- Allow players to vote for which track to play. If this value is set to false, the server will randomly pick the next track to play. --> | ||
+ | < | ||
+ | |||
+ | <!-- Timeout in seconds for selecting karts and (or) voting tracks in server, you may want to use a lower value if you have track-voting off. --> | ||
+ | < | ||
+ | |||
+ | <!-- Timeout in seconds for validation of clients in wan, currently STK will use the stk-addons server to share AES key between the client and server. --> | ||
+ | < | ||
+ | |||
+ | <!-- By default WAN server will always validate player and LAN will not, disable it to allow non-validated player in WAN. --> | ||
+ | < | ||
+ | |||
+ | <!-- Disable it to turn off all stun related code in server, it allows for saving of server resources if your server is not behind a firewall. --> | ||
+ | < | ||
+ | |||
+ | <!-- Enable to allow IPv6 connection if you have a public IPv6 address. STK currently uses dual-stack mode which requires server to have both IPv4 and IPv6 and listen to same port. If STK detects your server has no public IPv6 address or port differs between IPv4 and IPv6 then it will use IPv4 only socket. For system which doesn' | ||
+ | < | ||
+ | |||
+ | <!-- No server owner in lobby which can control the starting of game or kick any players. --> | ||
+ | < | ||
+ | |||
+ | <!-- Time to wait before entering kart selection screen if satisfied min-start-game-players below for owner less or ranked server. --> | ||
+ | < | ||
+ | |||
+ | <!-- Clients below this value will be rejected from joining this server. It's determined by number of official karts in client / number of official karts in server --> | ||
+ | < | ||
+ | |||
+ | <!-- Clients below this value will be rejected from joining this server. It's determined by number of official tracks in client / number of official tracks in server, setting this value too high will prevent android players from joining this server, because STK android apk has some official tracks removed. --> | ||
+ | < | ||
+ | |||
+ | <!-- 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). --> | ||
+ | < | ||
+ | |||
+ | <!-- Enable team choosing in lobby in team game (soccer and CTF). If owner-less is enabled and live-spectate is not enabled, than this option is always disabled. --> | ||
+ | < | ||
+ | |||
+ | <!-- If strict-players is on, no duplicated online id or split screen players are allowed, which can prevent someone using more than 1 network AI with this server. --> | ||
+ | < | ||
+ | |||
+ | <!-- Server will submit ranking to stk-addons server for linear race games, you require permission for that. validating-player, | ||
+ | <ranked value=" | ||
+ | |||
+ | <!-- If true, the server owner can config the difficulty and game mode in the GUI of lobby. This option cannot be used with owner-less or grand prix server, and will be automatically turned on if the server was created using the in-game GUI. The changed difficulty and game mode will not be saved in this config file. --> | ||
+ | < | ||
+ | |||
+ | <!-- If true, players can live join or spectate the in-progress game. Currently live joining is only available if the current game mode used in server is FFA, CTF or soccer, also official-karts-threshold will be made 1.0. If false addon karts will use their original hitbox other than tux, all players having it restriction applies. --> | ||
+ | < | ||
+ | |||
+ | <!-- Time in seconds when a flag is dropped a by player in CTF returning to its own base. --> | ||
+ | < | ||
+ | |||
+ | <!-- Time in seconds to deactivate a flag when it's captured or returned to own base by players. --> | ||
+ | < | ||
+ | |||
+ | <!-- Hit limit of free for all, zero to disable hit limit. --> | ||
+ | < | ||
+ | |||
+ | <!-- Time limit of free for all in seconds, zero to disable time limit. --> | ||
+ | < | ||
+ | |||
+ | <!-- Capture limit of CTF, zero to disable capture limit. --> | ||
+ | < | ||
+ | |||
+ | <!-- Time limit of CTF in seconds, zero to disable time limit. --> | ||
+ | < | ||
+ | |||
+ | <!-- Value used by server to automatically estimate each game time. For races, it decides the lap of each race in network game, if more than 0.0f, the number of lap of each track vote in linear race will be determined by max(1.0f, auto-game-time-ratio * default lap of that track). For soccer if more than 0.0f, for time limit game it will be auto-game-time-ratio * soccer-time-limit in UserConfig, for goal limit game it will be auto-game-time-ratio * numgoals in UserConfig, -1 to disable for all. --> | ||
+ | < | ||
+ | |||
+ | <!-- Maximum ping allowed for a player (in ms), it's recommended to use default value if live-spectate is on. --> | ||
+ | < | ||
+ | |||
+ | <!-- Tolerance of jitter in network allowed (in ms), it's recommended to use default value if live-spectate is on. --> | ||
+ | < | ||
+ | |||
+ | <!-- Kick players whose ping is above max-ping. --> | ||
+ | < | ||
+ | |||
+ | <!-- Allow players exceeding max-ping to have a playable game, if enabled kick-high-ping-players will be disabled, please also use a default value for max-ping and jitter-tolerance with it. --> | ||
+ | < | ||
+ | |||
+ | <!-- Kick idle player which has no network activity to server for more than some seconds during game, unless he has finished the race. Negative value to disable, and this option will always be disabled for LAN server. --> | ||
+ | < | ||
+ | |||
+ | <!-- Set how many states the server will send per second, the higher this value, the more bandwidth requires, also each client will trigger more rewind, which clients with slow device may have problem playing this server, use the default value is recommended. --> | ||
+ | < | ||
+ | |||
+ | <!-- Use sql database for handling server stats and maintenance, | ||
+ | < | ||
+ | |||
+ | <!-- Database filename for sqlite to use, it can be shared for all servers created in this machine, and STK will create specific table for each server. You need to create the database yourself first, see NETWORKING.md for details --> | ||
+ | < | ||
+ | |||
+ | <!-- Specified in millisecond for maximum time waiting in sqlite3_busy_handler. You may need a higher value if your database is shared by many servers or having a slow hard disk. --> | ||
+ | < | ||
+ | |||
+ | <!-- IPv4 ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) whichallows live kicking peer by inserting record to database. --> | ||
+ | < | ||
+ | |||
+ | <!-- IPv6 ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) which allows live kicking peer by inserting record to database. --> | ||
+ | < | ||
+ | |||
+ | <!-- Online ID ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) which allows live kicking peer by inserting record to database. --> | ||
+ | < | ||
+ | |||
+ | <!-- Player reports table name, which will be written when a player reports player in the network user dialog, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. --> | ||
+ | < | ||
+ | |||
+ | <!-- Days to keep player reports, older than that will be auto cleared, 0 to keep them forever. --> | ||
+ | < | ||
+ | |||
+ | <!-- IP geolocation table, you only need this table if you want to geolocate IP from non-stk-addons connection, as all validated players connecting from stk-addons will provide the location info, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. --> | ||
+ | < | ||
+ | |||
+ | <!-- IPv6 geolocation table, you only need this table if you want to geolocate IP from non-stk-addons connection, as all validated players connecting from stk-addons will provide the location info, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. --> | ||
+ | < | ||
+ | |||
+ | <!-- If true this server will auto add / remove AI connected with network-ai=x, | ||
+ | < | ||
+ | |||
+ | <!-- If true this server will allow AI instance to be connected from anywhere. (other than LAN network only) --> | ||
+ | < | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | ===== Running The Server And Connecting Bots To It ===== | ||
+ | Log in to your Debian box as the run-user (' | ||
+ | <sxh bash; gutter: false> | ||
+ | tmux | ||
supertuxkart --server-config=supertuxkart_config.xml --network-console | supertuxkart --server-config=supertuxkart_config.xml --network-console | ||
+ | </ | ||
+ | Create a new tmux shell by pressing < | ||
+ | <sxh bash; gutter: false> | ||
+ | supertuxkart --connect-now=127.0.0.1: | ||
+ | </ | ||
+ | |||
+ | You can use < | ||
+ | <sxh bash; gutter: false> | ||
+ | tmux attach | ||
+ | </ | ||
+ | You can terminate the SuperTuxServer processes by pressing < | ||
---- | ---- | ||
~~DISCUSSION~~ | ~~DISCUSSION~~ | ||
pages/howtos/debian/supertuxkart-server.1641569785.txt.gz · Last modified: 2022/01/07 15:36 by mischerh