I followed the instructions below for installation:
The question after that is how do you let odrive run in the background automatically? What is the preferred way?
Or did I miss something?
I have now solved this in such a way that I have set up a user unit for systemd:
[Unit]
Description=Run odrive-agent in background
Wants=network-online.target
After=network.target network-online.target
[Service]
Type=forking
ExecStart=%h/.odrive-agent/bin/odriveagent
Restart=on-failure
RestartSec=5
[Install]
WantedBy=default.target
detailed in Github Gist: systemd user unit odrive.service