首页 > 代码库 > Configure Several VNC Client on redhat 5.5

Configure Several VNC Client on redhat 5.5

使用vncserver命令为当前用户启动vnc服务(将在当前用户主目录下生成.vnc配置文件夹)

[root@tech `]# vncserver

You will require a password to access your desktops.

??

Password:<输入密码>

Verify:<输入密码>

??

首次创建 /.vnc/xstartup 时,指定的窗口管理器是twn,它是一个极小的窗口管理器,几乎每台xwindows系统及其上都有twn 。twn不具备完整桌面管理器的大部分花哨功能,下面是修改过的实例。

[root@tech]# vi .vnc/xstartup

在最下面添加一行:

DISPPLAY=:1 gnome-session &

设置开机自动运行vncserver

在/etc/rc.d/rc.local文件中加入下面行

/etc/init.d/vncserver start

编辑/etc/sysconfig/vncservers

VNCSERVERS="1:root"

VNCSERVERARGS[1]="-geometry 1024x768" --配置启动的桌面

多个用户可以这样写:

VNCSERVERS= "1:user 2:user2 3:user3"

??

redhat系统上vnc启动命令:

/etc/init.d/vncserver start

查看vnc启动情况

netstat -tulnp

关闭服务器上自己的vnc链接

vncserver -kill :桌面号

例如:关闭上面的vnc链接

vncserver -kill :1

??

变更 VNC 密码 : vncpasswd

??

Here is another example :

vi .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" &

gnome-session gnome

twm &

??

edit /etc/sysconfig/vncservers

VNCSERVERS="1:root 2:notes"

VNCSERVERARGS[1]="-geometry 1024x768"

Configure Several VNC Client on redhat 5.5