Solved [Solved] vncserver fires up KDE 3.5 instead of KDE4

Hi all,

I have installed and configured vncserver on my FreeBSD server (9.1). From the server itself, the window manager is configured to be KDE4. However, when I remote connect to the server (using TightVnc), I get KDE3.5 instead.

Here is the xstartup file:
Code:
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
startkde &
root@fbsd91:/root/.vnc #

What do I need to change in order to get KDE4 instead of KDE3.5 when I remotely connect to my server?

Thanks.
 
Re: vncserver fires up KDE 3.5 instead of KDE4 as window man

Solved: I added
Code:
PATH=/usr/local/kde4/bin:$PATH
export PATH
to my xstartup file.

Thanks anyway.
 
Back
Top