Ubuntu 15.10 VNCグレースクリーンのインストールの問題
5028 ワード
1.Ubuntuではまずvnc 4 serverをインストールする必要がある
# apt-get install vnc4server
2.初めてvncserverを実行するときは、クライアント接続に8ビットのパスワードを設定する必要があります。
3.サービスを開いたら、クライアント番号に従って接続します。クライアント番号を指定することもできます
$vncserver -geometry 1366x768 :1
// -geometry ,:1
// vnc viewer 192.168.0.253:1
4.灰色の画面と×型マウスはvncserverが指定したグラフィックスソフトが見つからないためです
このサイトでは、あるネットユーザーが次のように指摘しています.
There are a number of things which can cause the grey screen problem. Your best bet is to look at the log file in .vnc to see what the error is. The log file name is hostName:display#.log, for example, on my machine, whose name is “golden”, it was golden:1.log.
In my case the ./vnc/xstartup file did not have the right permissions, so chmod +x ./vnc/xstartup fixed the problem. I could have fiddled with the contents of xstartup until the cows came home and it wouldn’t have helped.
私たちは~/.vnc/xxx:1.logは、問題の原因を表示できます.説明すると、ここのログ1.logは、クライアント番号が1の接続ログを表します.
error opening security policy file /etc/X11/xserver/SecurityPolicy
Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/misc/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/75dpi/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/100dpi/, removing from list!
Could not init font path element /usr/share/fonts/X11/75dpi/, removing from list!
Could not init font path element /usr/share/fonts/X11/100dpi/, removing from list!
Ubuntu 15.10の下に関連するフォルダは見えません.バージョンパスの変更の問題かもしれません.findコマンドでfontsを見つけたのは、実は/usr/share/fonts/の下です.ここでは、指定したディレクトリを作成し、lnソフト接続で後者のパスを指し、ログ内のパス名につなぎます.
構成が完了すると、次のエラーも発生しますが、エラーは発生しません.
error opening security policy file /etc/X11/xserver/SecurityPolicy
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/75dpi/, removing from list!
Could not init font path element /usr/share/fonts/X11/75dpi/, removing from list!
5.変更が必要~/.vnc/xstartupファイル
インストールする前に、次のソフトウェアをインストールします.
$sudo apt-get install gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal
xstartupファイルを変更します
#!/bin/sh
# Uncomment the following two lines for normal desktop:
export XKL_XMODMAP_DISABLE=1
unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
unset DBUS_SESSION_BUS_ADDRESS
gnome-panel &
gnmoe-settings-daemon &
metacity &
nautilus &
gnome-terminal &
VNCServerを再起動すればOKです.
注意:vncserver:1サービスvncserver-kill:1この接続番号を閉じる