又到了逛大型程序员交友 网站的时间了,今天你准备好了吗。
今天要推荐的一个有趣的项目是noVNC
setup好以后是这个样子的,可以在浏览器登陆vnc,不需要再安装一个vnc client.
setup的过程比较简单,分为以下几步:
1. vncserver
novnc
基于vncserver
,所以需要先把vncserver
的环境搭建好,最后的目标就是在命令行敲vncserver的时候他会提示在:1
或者:5901
创建成功。
shell
sudo apt-get install tightvncserver
这里不展开,网上有大量的教程。
这里要注意记住设置的vncserver的password,下面会用到。
2. novnc
Use the novnc_proxy script to automatically download and start websockify, which includes a mini-webserver and the WebSockets proxy. The --vnc option is used to specify the location of a running VNC server:
shell
git clone https://github.com/novnc/noVNC.git
cd noVNC
./utils/novnc_proxy --vnc localhost:5901 --listen localhost:6081
这时你应该可以看到这样的输出:
Using local websockify at /home/xxx/projects/noVNC/utils/websockify/run
Starting webserver and WebSockets proxy on host localhost port 6081
WebSocket server settings:
- Listen on localhost:6081
- Web server. Web root: /home/xxx/projects/noVNC
- SSL/TLS support
- proxying from localhost:6081 to localhost:5901
Navigate to this URL:
http://localhost:6081/vnc.html?host=localhost&port=6081
Press Ctrl-C to exit
这时,把上面那个URL copy到浏览器里打开然后点connect输入你的vncserver密码就可以了,实际用下来和vnc client没啥差别。