I installed TightVNC Server version 1.3.10 in ubuntu 16.04. The configuration in xstartup file is as following.
#!/bin/bash
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
gnome-panel &
metacity &
gnome-terminal &
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid gray
vncconfig -iconic &
My problem is that the upper right panel showing username, clock, and other things does not appear.
How can I make it correct?
