X11VNCインストール

root@hide:~# apt-get install x11vnc
 
X11VNC 自動起動のパスワードファイルを作成
root@hide:~# 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@hide:~# 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.targe
 
----------------
 
root@hide:~# apt-get install xinetd
パッケージリストを読み込んでいます... 完了
依存関係ツリーを作成しています
状態情報を読み取っています... 完了
以下のパッケージが自動でインストールされましたが、もう必要とされていません:
  gir1.2-appindicator3-0.1 gir1.2-json-1.0 gir1.2-timezonemap-1.0
  gir1.2-xkl-1.0 libtimezonemap1 python3-cairo python3-gi-cairo
これを削除するには 'apt-get autoremove' を利用してください。
以下のパッケージが新たにインストールされます:
  xinetd
アップグレード: 0 個、新規インストール: 1 個、削除: 0 個、保留: 382 個。
102 kB のアーカイブを取得する必要があります。
この操作後に追加で 317 kB のディスク容量が消費されます。
取得:1 http://ftp.jaist.ac.jp/pub/Linux/ubuntu/ trusty/main xinetd i386 1:2.3.15-3ubuntu1 [102 kB]
102 kB を 0秒 で取得しました (360 kB/s)
以前に未選択のパッケージ xinetd を選択しています。
(データベースを読み込んでいます ... 現在 114444 個のファイルとディレクトリがインストールされています。)
Preparing to unpack .../xinetd_1%3a2.3.15-3ubuntu1_i386.deb ...
Unpacking xinetd (1:2.3.15-3ubuntu1) ...
Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
Processing triggers for ureadahead (0.100.0-16) ...
ureadahead will be reprofiled on next reboot
xinetd (1:2.3.15-3ubuntu1) を設定しています ...
xinetd start/running, process 7171
Processing triggers for ureadahead (0.100.0-16) ...
 
-------
root@hide:~# apt-get autoremove gir1.2-appindicator3-0.1 gir1.2-json-1.0 gir1.2-timezonemap-1.0
root@hide:~# apt-get autoremove gir1.2-xkl-1.0 libtimezonemap1 python3-cairo python3-gi-cairo
 
 
サービスxinetd 登録
root@hide:~# sysv-rc-conf xinetd on
root@hide:~# sysv-rc-conf --list xinetd
xinetd       2:on       3:on    4:on    5:on
 
---------------
サービスx11vnc 登録
root@hide:~# sysv-rc-conf x11vnc on
root@hide:~# sysv-rc-conf --list x11vnc
x11vnc       2:on       3:on    4:on    5:on
 
-------------
root@hide:~# reboot
 
192.168.10.11:0 にVNC 接続
 
*************************************
 
 
 
 
投票数:1 平均点:10.00

 
Back to Top