Roon Server on Linux: Autostart Roon upon Linux start

Hi community,
I just managed it to get Roon Server running on a Linux Ubuntu 20.04.
Could connect my iPad as a test and restored an old Backup. Roon played music on my iPad. So next to configure the other two laptops on my music equipment.

My Question: If I restart my Ubuntu machine, is Roon Server starting automatically? And if not, how to configure it?
Thx Martin

I’ve moved to the Linux section may be seen better there.

It should have installed a systemd service module in /etc/systemd/system and set it to enabled. That should make Roon Core auto-start on boot.

1 Like

Thanks, found a file named roonserver.service. The content is:
[Unit]
Description=RoonServer
After=network-online.target

[Service]
Type=simple
User=root
Environment=ROON_DATAROOT=/var/roon
Environment=ROON_ID_DIR=/var/roon
ExecStart=/opt/RoonServer/start.sh
Restart=on-abort

[Install]
WantedBy=multi-user.target

Okay, I managed it. After restart roon server starts automatically.
Thanks guys