Autoarrancar KODI en raspbian

Sección Unicamente para Tutoriales y Guías
Responder
Th3music
Pi Newbie
Pi Newbie
Mensajes: 7
Registrado: 21 Mar 2018, 14:13
Agradecido: 0
Agradecimiento recibido: 0

Buenos días,
Tengo un problemilla, no consigo autoarrancar KODI en raspbian :destroyer . ¿Alguno sabe como hacerlo? :avergonzado
Es el raspbian 4.19.97-v7l
Gracias!
Th3music
Pi Newbie
Pi Newbie
Mensajes: 7
Registrado: 21 Mar 2018, 14:13
Agradecido: 0
Agradecimiento recibido: 0

Bueno, ya lo he conseguido! :)
Th3music
Pi Newbie
Pi Newbie
Mensajes: 7
Registrado: 21 Mar 2018, 14:13
Agradecido: 0
Agradecimiento recibido: 0

Era crear en /etc/xdg/autostart un nuevo fichero a similitud de los que ya hay, llamando al ejecutable kodi.
farid77
Pi Alpha
Pi Alpha
Mensajes: 25
Registrado: 20 May 2018, 01:12
Agradecido: 0
Agradecimiento recibido: 2 veces

en una terminal, ejecuta esto

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
Responder