在Ubuntu上安装VNC服务
安装软件
执行下面的命令安装vnc4server:
1 |
apt install vnc4server |
vnc4server是Ubuntu下基于RealVNC的VNC服务。
启动服务
1 2 3 4 5 6 7 |
# 启动一个服务 vncserver :1 # 指定分辨率 vnc4server -geometry 1600x900 :1 # 停止服务 vncserver -kill :1 |
配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/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-panel & gnome-settings-daemon & metacity & nautilus & |
开机启动
可以利用CronTab实现:
1 |
@reboot /usr/bin/vncserver -geometry 1600x900 :1 |
Leave a Reply