0

I followed the guide here, and I seem to be able to connect but I get a blank screen using the Chicken VNC viewer. Why?

enter image description here

joslinm
  • 131
  • 5

1 Answers1

1

I changed my .vnc/xstartup as follows:

#!/bin/sh

# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
gnome-session --session=gnome-classic &

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
#x-terminal-emulator -geometry 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” &
#x-window-manager &
joslinm
  • 131
  • 5