web-dev-qa-db-ja.com

lubuntuの起動時にxbmcを自動的に実行する

Lubuntu 14.04の新規インストールを実行して、ブート時にxbmcを実行したいのですが、そのようなシステム設定が見つからないようです。どこを見ればいいですか?

1
user218314

コマンドを追加してみてください

/ 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 
1
Mansueli

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

0
TuKsn