ubuntu 安装VNC Server
ubuntu16.04 安装VNC Server
1、安装 X11VNC
apt install x11vnc -y
2、配置访问密码:输两次
x11vnc -storepasswd /etc/x11vnc.pass
3、创建服务
vim /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.pass -rfbport 5900 -shared
[Install] WantedBy=multi-user.target 保存退出
4、修改防火墙配置,配置和启动服务
ufw allow 5900 systemctl enable x11vnc.service
systemctl daemon-reload
相关资料:http://www.cppblog.com/zhangyq/archive/2018/12/19/216126.html
Ubuntu 配置 vnc4server
1.安装vnc4server
两种方法:
命令行: sudo apt-get install vnc4server
图形界面:在System -> Administration -> Synaptic Package Manager中安装
$ sudo apt-get install vnc4server
2.设置vnc4passwd
$ vnc4passwd
在$HOME/.vnc目录下面生成一个passwd文件。
$HOME/.vnc是一个vnc4server的关键目录。
隐藏目录,需要show hide files
3.启动vnc4server
$ vnc4server
在./vnc目录下生成下列文件:
###-desktop:1.log
###-desktop:1.pid
xstartup
desktop的名称在客户端连接的时候用到。
如果是desktop:1,在客户端连接的时候就填写:ip:1;
如果是Desktop 2,在客户端的时候填写:ip:2….
首次运行vnc4server会提示生成了xstartup文件,这个文件里面包含着登录启动X时的一些配置。
4.重启vnc4server
$ vnc4server -kill :1
$vnc4server
注意:“-kill”和“:1”之间有空格
5.额外的重要配置
网上查到资料从UltraVNC登录,可能得到一个比较简单的窗口,因为VNC4Server缺省启动的WM是twm,如果希望启动gnome,需要改动.vnc/xstartup
修改前:
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop"&
x-window-manager &
因为VNC4Server缺省启动的WM是twm,如果希望启动gnome,需要改动.vnc/xstartup,注释掉x的部分,增加
gnome-session &
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
# xsetroot -solid grey
# vncconfig -iconic &
# x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop"&
# x-window-manager &
gnome-session &
这两篇blog不错,特此引用:
http://blog.csdn.net/huaciom/article/details/6198414
http://blog.csdn.net/fisher_jiang/article/details/4192482
6.多客户端配置
只需多次运行vnc4server,产生多个desktop id可供多个客户端使用
7.vnc4server设置成开机自启动
在etc/profile里面加入vnc4server命令
参考http://wenku.baidu.com/view/56f7b05f804d2b160b4ec0da.html
二、在win7中配置VNC Client
1.下载UltraVNC并安装
链接地址:http://www.uvnc.com/component/jdownloads/summary/4/44.html
2.填入ubuntu的ip地址及你想使用的desktop pid,如图,点击connect