安装(debian):
apt-get install vnc4server
vncserver :1 -geometry 1024x768 -depth 16 //创建一个1024x768的屏幕,端口为1
会提示创建密码,另外会生成$HOME/.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" &
xfce4-session &
xfce4-panel &
之后使用vncviewer查看IP:1就可以了。
没有评论:
发表评论