博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

配置VNC

Posted on 2012-09-01 17:41  奥客  阅读(145)  评论(0编辑  收藏  举报

修改文件 /root/.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 &
#xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#twm &

 

启动vnc: vncserver :1

杀掉vnc: vncserver -kill :1