----------
konalinux のOS起動後に自動で、x11vncを起動する設定
x11vnc インストール
root@inspiron:~# apt-get install x11vnc
xrdp をインストール
root@inspiron:~# apt-get install xrdp
X11VNC 自動起動のパスワードファイルを作成
root@inspiron:~# 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@inspiron:~# 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
サービス管理プログラムをインストール
root@inspiron:~# apt-get install xinetd
root@inspiron:~# apt install sysv-rc-conf
xinetd サービス自動起動設定
root@inspiron:~# sysv-rc-conf xinetd on
root@inspiron:~# sysv-rc-conf --list xinetd
xinetd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
root@inspiron:~# service xinetd restart
[ ok ] Stopping internet superserver: xinetd.
[ ok ] Starting internet superserver: xinetd.
x11vnc サービス自動起動設定
root@inspiron:~# sysv-rc-conf x11vnc on
root@inspiron:~# sysv-rc-conf --list x11vnc
x11vnc 2:on 3:on 4:on 5:on
---------------------------------
root@inspiron:~# reboot
**********************************************************************
192.168.1.5:0 にVNC 接続。 確認
自動起動は失敗するが、
端末ssh root ユーザーで、x11vnc を起動
root@inspiron:~# x11vnc
これで、ダメな場合は、
root@inspiron:~# x11vnc -auth guess
端末ssh アクティブ中で、VNC ユーザーログイン画面に接続、成功
一旦、ログインすると、VNC デスクトップでは、ユーザー切り替えできない。
***********************************************************************