开启vnc图形界面配置

[root@dbtest ~]# cat /home/oracle/.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 &
startkde &
gnome-session &


****************************************************************************
[root@dbtest ~]# cat /etc/sysconfig/vncservers 




VNCSERVERS="1:root 2:oracle"
VNCSERVERARGS[1]="-geometry 800x600"
VNCSERVERARGS[2]="-geometry 800x600"
#VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"

你可能感兴趣的:(开启vnc图形界面配置)