星期五, 八月 28, 2009

Vnc on cooperative linux

之前用vnc觉得速度不太理想,现在用起来,速度还算不错。

ScreenShot042

安装(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就可以了。

没有评论: