issues with vmc on fedora core 2
Is this normal? Or is there a way to connect to my fedora box and get my Gnome GUI to come up? I have found hints to a xinitrc file but I am not familar with linux enough to know what to do with it. I have read the man files on it but I don't know how to relate that to the vnc server.
Any help would be great appreciated. I want to be able to connect to it because I want to learn linux via this medium.
3 Replies
xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
This is my xstartup file if this can help anyone help me.
@socrates_777:
This is my xstartup file if this can help anyone help me.
Try replacing it with this:
#!/bin/sh
/usr/bin/gnome-session &
or
#!/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
-Chris