KODIをdebianにインストールする
sudo apt install software-properties-common -y
sudo add-apt-repository -y ppa:team-xbmc/ppa
sudo apt install kodi kodi-eventclients-kodi-send kodi-inputstream-adaptive -y
ユーザーIDでも、KODIを起動できるようにする
sudo usermod -a -G audio,video,input,dialout,plugdev,netdev,users,cdrom,tty [userID]
KODIをOS起動時に同時起動するようにする
sudo crontab -e
最終行に以下を追記@reboot kodi --standalone
キーボード、マウス無しで Web serviceを使えるようにする
guisettings.xml
advancedsettings.xml
の2ファイルを編集する
advancedsettings.xml
は 標準では存在しないので以下の様に作る
<advancedsettings>
<services>
<esallinterfaces>true</esallinterfaces>
<webserver>true</webserver>
<zeroconf>true</zeroconf>
</services>
</advancedsettings>
以下 Nexusでの問題点
Web Interface がうまく動作しない問題
インストールパッケージに含まれる webinterface.default が
おかしいのが原因
正常なものを /usr/share/kodi/addon
の下に上書きする必要がある
Keybord や Mouse が反応しない問題
これは、Kodiを起動しようとするユーザーが input グループに
属していないと起こる
sudo usermod -a -G input ユーザー名