其实配置VNC很简单,只要运行vncserver就好了.运行完毕后,它会在家目录生成.vnc目录,里面最重要的一个文件是Xstartup。
然后你可以使用vncviewer yourremotehost:id 就可以了。
不过VNC默认启动的X-windows是twm,看上去有点丑,那么你可以把~/.vncr/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 &
然后重新启动vncserver就ok了。
阅读(1999) | 评论(0) | 转发(0) |