Debian 9 Stretch
Sponsored Link

VNCサーバーの設定2017/06/21

 
VNCサーバーをインストールして、Windows コンピューターから Debian サーバーへ、グラフィカルにリモート接続します。
[1] VNCサーバーをインストールします。
root@dlp:~#
apt -y install vnc4server
[2] VNC を起動したい任意のユーザーでログインして設定します。デスクトップ環境については当例では MATE デスクトップを利用します。
# VNCパスワード設定

debian@dlp:~$
Password:
Verify:
Would you like to enter a view-only password (y/n)? n
# VNCサーバー起動

debian@dlp:~$
vncserver :1


/usr/bin/xauth:  file /home/debian/.Xauthority does not exist

New 'dlp.srv.world:1 (debian)' desktop at :1 on machine dlp.srv.world

Starting applications specified in /etc/X11/Xvnc-session
Log file is /home/debian/.vnc/dlp.srv.world:1.log

Use xtigervncviewer -SecurityTypes VncAuth -passwd /home/debian/.vnc/passwd :1 to connect to the VNC server.

# 一旦停止

debian@dlp:~$
vncserver -kill :1

Killing Xtigervnc process ID 890... success!
debian@dlp:~$
vi ~/.vnc/xstartup
# 新規作成

exec /usr/bin/mate-session &
# ディスプレイ番号 [1], 解像度 [800x600], 色深度 [24], リモートからの接続OK で起動

debian@dlp:~$
vncserver :1 -geometry 800x600 -depth 24 -localhost no


New 'dlp.srv.world:1 (debian)' desktop at :1 on machine dlp.srv.world

Starting applications specified in /home/debian/.vnc/xstartup
Log file is /home/debian/.vnc/dlp.srv.world:1.log

Use xtigervncviewer -SecurityTypes VncAuth -passwd /home/debian/.vnc/passwd :1 to connect to the VNC server.
[3]
クライアント側の設定です。Windows 10 を例にします。
下記サイトより、最新版の UltraVNC をダウンロードします。
ダウンロードとインストールの完了後、[UltraVNC Viewer] をクリックして起動すると、以下の画面になります。 [VNC Server] の欄に [サーバーのホスト名またはIPアドレス:[1]で指定したディスプレイ番号] と指定し、[Connect] ボタンをクリックします。
[4] 以下の画面になるので[1]で設定したパスワードを入力します。
[5] 接続できました。
関連コンテンツ