# systemd Service The below service forks the MBBSEmu process into a screen session and is a cheap way to daemonize Save to: `/etc/systemd/system/mbbs.service` ``` [Unit] Description=MBBSEmu After=syslog.target network.target [Service] Type=forking ExecStart=/usr/bin/screen -d -m -S mbbs ./MBBSEmu -CLI -C games.json User= Group= WorkingDirectory=/doors/mbbsemu [Install] WantedBy=multi-user.target ``` Thanks to [@ryanfantus](https://github.com/ryanfantus)!