Hi,
I'm using the remote desktop so that I can use the remote computer which OS is CentOS by using my computer which OS is Vista. In the CentOS, I have two users, the root and the regular. I then use VNC to do the remote desktop, and in order to have nice desktop, I set the xstartup file to be:
Code:
#!/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" &
#startx &
exec gnome-session &
#twm &
for the root in /root/.vnc/xstartup and for the regular user in /home/EonStrife/.vnc/xstartup

I run the vncserver :6 for EonStrife user and vncserver :5 for the root.

The problem, is that for the EonStrife user, I got the nice GUI desktop, but for the root I only got the simple terminal. Can anyone tell me what's wrong ?
BTW, for the client I use tightVNC and RealVNC Free.

Thanks.