Kodi ha aggiunto l'avvio automatico del sistema nel sistema operativo Raspberry Pi
Il seguente metodo descrive come aggiungere kodi all'avvio automatico del sistema.
Kodi verrà lanciato immediatamente dopo aver riavviato il nostro Raspberry.
Faremo il tutto in pochi clic.
Avviamo il nostro terminale ed emettiamo un comando:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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_ |
Quindi attivare il servizio tramite comando:
1 | sudo systemctl enable kodi.service |
Questo è tutto 😉 Possiamo testare il tutto riavviando il nostro succhiotto.