Lubuntu 14.04の新規インストールを実行して、ブート時にxbmcを実行したいのですが、そのようなシステム設定が見つからないようです。どこを見ればいいですか?
コマンドを追加してみてください
/ etc/rc.d/rc.local
または
$ mv yourcommand.sh /etc/init.d/
$ Sudo chmod 755 /etc/init.d/yourcommand.sh
$ Sudo update-rc.d yourcommand.sh defaults
xbmcの初期化スクリプトを開始
次の内容で/etc/init/xbmc.conf
を作成します。
# 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
注:-- -nocursor
オプションは、XBMCの起動時にすべてのXカーソルを強制終了し、マウスの使用/操作を妨げません。
/etc/X11/Xwrapper.config
を編集して、最後の行を置き換える必要がある場合があります。
allowed_users=console
からallowed_users=anybody
ソース: http://wiki.xbmc.org/index.php?title=HOW-TO:Install_XBMC_for_Linux