X11VNC:让Windows可以远程管理Ubuntu桌面

链接地址:http://www.linuxidc.com/Linux/2012-06/63080.htm


最新版本:http://digiter.diandian.com/post/2013-03-17/40048221110 (启动脚本比上面的好用)


在网上搜索vnc看到很多资料,都是介绍vnc4server的,而ubuntu自带的服务端是vino。

困扰我很久的问题了:vino不能在系统boot时自动启动。网上搜索很久发现广泛存在这个问题,没什么好的解决方案。

后来看到有人从vino转到x11vnc,跟着尝试一下,搞定了:)

而且不仅支持gnome还支持xfce

记录一下

 

First thing is to install it:

1
sudo apt-get install x11vnc

Setup a password file:

1
sudo x11vnc -storepasswd YOUR_PASS_HERE /etc/x11vnc .pass

Create an upstart config:

1
sudo touch /etc/init/x11vnc .conf

Open it and put this into it:

1
2
3
4
5
start on login-session-start
script
x11vnc -xkb -noxrecord -noxfixes -noxdamage -display :0 -rfbauth /etc/x11vnc .pass \
  -auth /var/run/lightdm/root/ :0 -forever - bg -o /var/log/x11vnc .log
end script

and start it up:

1
sudo service x11vnc start
Simple, easy, and just works.

你可能感兴趣的:(ubuntu相关)