***********************************************************************************
X11VNC 自動起動のパスワードファイルを作成
root@FMV:~# x11vnc -storepasswd /etc/x11vnc.passwd
Enter VNC password:
Verify password:
Write password to /etc/x11vnc.passwd? [y]/n y
Password written to: /etc/x11vnc.passwd
-----------------------------
X11VNC 自動起動の設定ファイルを新規作成
root@FMV:~# vi /lib/systemd/system/x11vnc.service
[Unit]
Description=Start x11vnc at startup.
After=multi-user.target
[Service]
Type=simple
ExecStart=/usr/bin/x11vnc -auth guess -forever -loop -noxdamage -repeat -rfbauth /etc/x11vnc.passwd -rfbport 5900 -shared
[Install]
WantedBy=multi-user.target
--------------------
サービスxinetd 登録
root@FMV:~# sysv-rc-conf xinetd on
root@FMV:~# sysv-rc-conf --list xinetd
xinetd 2:on 3:on 4:on 5:on
-------------
サービスx11vnc 登録
root@FMV:~# sysv-rc-conf x11vnc on
root@FMV:~# sysv-rc-conf --list x11vnc
x11vnc 2:on 3:on 4:on 5:on
----------------
root@FMV:~# reboot
192.168.2.102:0 にVNC 接続。 確認OK。
*********************************************