How to start a programm as service

There are several ways to get there from here. :slight_smile:

If your program needs to run constantly you can create a systemd service, as described here:

If your program needs to run periodically you can create a cronjob, as described here:

If your program needs to run in the background from a user’s session you can look at Linux job control, as described here:

Another option is the screen command, as described here:

2 Likes