web-dev-qa-db-fra.com

Exécuter automatiquement xbmc au démarrage dans lubuntu

Lancer une nouvelle installation de lubuntu 14.04 voudrait que xbmc soit lancé au démarrage, mais je n'arrive pas à trouver un paramètre système comme celui-ci. Des idées où chercher?

1
user218314

Soit vous essayez d’ajouter la commande à

/ etc/rc.d/rc.local

ou

$ mv yourcommand.sh /etc/init.d/
$ Sudo chmod 755 /etc/init.d/yourcommand.sh
$ Sudo update-rc.d yourcommand.sh defaults 
1
Mansueli

Script d'initialisation pour xbmc

Créez un /etc/init/xbmc.conf avec le contenu suivant:

# xbmc-upstart
# starts XBMC on startup by using xinit.
# by default runs as xbmc, to change edit below.
env USER=xbmc

description     "XBMC-barebones-upstart-script"
author          "Matt Filetto"

start on (filesystem and stopped udevtrigger)
stop on runlevel [016]

# tell upstart to respawn the process if abnormal exit
respawn

script
  exec su -c "xinit /usr/bin/xbmc --standalone -- -nocursor :0" $USER
end script

Remarque: L'option -- -nocursor tue tout le curseur X au démarrage de XBMC et n'interfère pas avec l'utilisation/le fonctionnement de la souris.

Vous devrez peut-être éditer /etc/X11/Xwrapper.config et remplacer la dernière ligne qui dit:

allowed_users=console à allowed_users=anybody

Source: http://wiki.xbmc.org/index.php?title=HOW-TO:Install_XBMC_for_Linux

0
TuKsn