Hello boys and girls ( and Kerbals in between ), Not sure if there is already something like this but here is simple script solution to run KLF in screen on linux. As I run proper server I prefer things running without need of open console. What you need: KLFServer.exe ( I will end up in silicone hell for running .exe on linux ) mono ( on ubuntu install via apt-get install mono-complete ) screen ( usually already in your linux distribution, if not, install... ) Two scripts in the same directory preferable: start.sh ksp_start.sh Now what is inside them you ask ? start.sh #!/bin/bash # open screen window, name it ksp and start the script ksp_start.sh in it screen -S ksp -t ksp -d -m /ksp/ksp_start.sh * note I have path to /ksp/ksp_start.sh, I like to use full path to the script your location might differ ( consult you doctor or apothecary ) ksp_start.sh #!/bin/bash # this will be executed inside previously opened screen window mono /ksp/KLFServer.exe Make both script executable with chmod +x ksp_start.sh start.sh Usage: cd to directory where you have these files. ./start.sh and its done... if you wanna look inside the running screen issue: screen -r ksp To jump out of screen without terminating session: ctrl+a+d This might be trivial for linux veterans, but somebody might find it useful.. One issue I have found and not have time to solve is that mono require root access for some stupid reason, I will have a look at that as that's not something I like to see. Enjoy, Vladoportos