Hi Admir,
Please open the file $home/.vnc/Xstartup file with any editor,
modify the file as below:
#!/bin/sh
OSNAME=`/bin/uname -s`
if [ ${OSNAME} = Linux ]
then
exec /etc/X11/xinit/xinitrc
vncconfig -nowin &
else
xrdb $HOME/.Xdefaults
xrdb $HOME/.Xresources
echo 'dtsession*wmStartupCommand: /usr/dt/bin/dtwm' | xrdb -merge
exec /usr/dt/bin/Xsession &
vncconfig -nowin &
exec xset fp= tcp/localhost:7100
fi
I hope, you will have to uncomment two lines.
Start the vnc service like:
#service vncserver restart
Try to connect with full X feature.
Have a blessed time,
Deepak
|