2016年2月13日土曜日

Kodiを試してみる その2(GUI環境とvncサーバー)

Kodiを使用する為に、Ubuntu14.04 にGUI環境とvncサーバーをインストールして、
macからリモートデスクトップで接続できるようにする。

# GUI環境インストール
下記のコマンドでも、GUI環境のインストールができるようですが、
sudo apt-get install xorg gnome-core gnome-system-tools gnome-app-install
vncで接続すると、うまく映らなかったので、
sudo tasksel
で、Ubuntu GNOME Desktopを選択してインストールしました。
参考URL: http://www.server-world.info/query?os=Ubuntu_14.04&p=x


# VNCサーバーをインストール
sudo apt-get install vnc4server

# パスワードの設定
vncserver

# xstartupに下記を追記
vi .vnc/xstartup
-----------------
exec gnome-session &
gnome-panel &
gnome-settings-daemon &
metacity &
nautilus -n &
gnome-terminal &
----------------------

# vncサーバー起動 ":1"の部分がディスプレイ番号
vncserver :1

# vncサーバー停止
vncserver -kill :1

# 5900番台がvncサーバーのListen
netstat -lt

# macのFinderでサーバー接続
# ポートは [5900 + ディスプレイ番号]
vnc://xxx.xxx.xxx.xxx:5901/

起動できたけど、肝心のkodiが起動できない。
ERROR: Unable to create GUI. Exiting

0 件のコメント:

コメントを投稿