Tengo un problemilla, no consigo autoarrancar KODI en raspbian


Es el raspbian 4.19.97-v7l
Gracias!
Código: Seleccionar todo
sudo tee -a /lib/systemd/system/kodi.service <<_EOF_
[Unit]
Description = Kodi Media Center
After = remote-fs.target network-online.target
Wants = network-online.target
[Service]
User = pi
Group = pi
Type = simple
ExecStart = /usr/bin/kodi-standalone
Restart = on-abort
RestartSec = 5
[Install]
WantedBy = multi-user.target
_EOF_
Código: Seleccionar todo
sudo systemctl enable kodi.service