GUI based distro: Installing your server
Installing a Raft Dedicated Server on Linux is a bit more complicated than Windows but if you have some basic knowledge of linux you can probably do it.
Last updated
Installing a Raft Dedicated Server on Linux is a bit more complicated than Windows but if you have some basic knowledge of linux you can probably do it.
Last updated
RDS is really easy to install as it is a single application named RaftDedicatedServer.exe that you can download on our master website available .
This tutorial has been written for Ubuntu 22.04 LTS. It should work on other debian based linux distributions. When it comes to other distro families like Redhat, Arch, ... you will need to adapt the commands.
This guide is for distros that have a user interface. If your distro does only provide a command line
There's two ways to install RDS on linux, you can either use our automated script or follow our step by step tutorial. If you don't really know what you are doing, we recommend you to use our automated script.
1 ) Download our bash script from .
2 ) Put in your home/YOUR_USER folder.
3 ) Run the command chmod 777 ./installrds.sh
4 ) Launch the installation with ./installrds.sh
5 ) Create a folder for your server.
6 ) Upload all the Raft game files onto your server.
7 ) Download RDS from and put it into your server directory.
8 ) Now to run your server go in your server folder with cd yourserverfolder
and use the following command.
/usr/bin/xvfb-run -a -l env WINEDLLOVERRIDES="winhttp.dll=n,b" env WINEDEBUG="-all" wine64 RaftDedicatedServer.exe
8 ) Now that your server "should" be working, in order to let it run 24/7 when you close the terminal, you can use screen with the commands below.
Launching the server :
screen -R RDS /usr/bin/xvfb-run -l -a env WINEDLLOVERRIDES="winhttp.dll=n,b" env WINEDEBUG="-all" wine64 RaftDedicatedServer.exe
To get back in the server window after logging back in into your VPS, type screen -r
To leave your server window without killing it press CTRL+A+D
1 ) Make sure your distribution is up to date.
Run the command sudo apt update
to update all your packages.
2 ) Installing the required dependencies.
In order to run the RaftDedicatedServer.exe file on linux, you'll need to install some third party softwares on your linux server such as & .
Run sudo apt install -y winetricks xvfb
to install wine.
Run wget https://dl.winehq.org/wine/wine-mono/5.0.0/wine-mono-5.0.0-x86.msi
to download mono for wine.
Run msiexec /i wine-mono-5.0.0-x86.msi
to install mono for wine.
Run sudo winetricks dotnet46
to install .NET 4.6 for wine.
3 ) Configuring winetricks
Winetricks need to be configured else it'll output many errors when running the server.
Simply run sudo winetricks sound=disabled
to disable ALSA sound library from wine.
4 ) Create a folder for your server.
5 ) Upload all the Raft game files onto your server.
6 ) Download RDS from and put it into your server directory.
7 ) Now to run your server go in your server folder with cd yourserverfolder
and use the following command.
/usr/bin/xvfb-run -a -l env WINEDLLOVERRIDES="winhttp.dll=n,b" env WINEDEBUG="-all" wine64 RaftDedicatedServer.exe
8 ) Now that your server "should" be working, in order to let it run 24/7 when you close the terminal, you can use screen with the commands below.
Launching the server :
screen -R RDS /usr/bin/xvfb-run -l -a env WINEDLLOVERRIDES="winhttp.dll=n,b" env WINEDEBUG="-all" wine64 RaftDedicatedServer.exe
To get back in the server window after logging back in into your VPS, type screen -r
To leave your server window without killing it press CTRL+A+D