Thanks mralk3 but I am after the server functionality, not the client. I use the Vinagre remote desktop viewer on my main CentOS 6 machine. I am considering updating my wife's desktop PC and my toy netbook to Ubuntu Mate but I want to be able to remotely access them from my main PC. Let me also thank you for the two reference links.
Thanks frankbell. I guess I really just needed to get motivated on this project again. I looked at x11vnc and printed out the information on the web site - 169 pages! It looks like it is intended to export the actual console display - sort of the desktop sharing concept. I will certainly investigate that a little further. However, I really like the concept of accessing a virtual desktop on the machine rather than the console. Sort of like accessing a real (mainframe) computer
I have done that with vnc since probably Redhat 8. With Ubuntu I got slack and used the built in desktop sharing except for my headless server on which I used vncserver on Ubuntu 12.04 LTS server. As to the Mate issue...
I found this post
http://www.linuxquestions.org/questi...on-4175437332/ which gave me the info I had been missing. My .vnc/xstartup looks like
Code:
#!/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
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
# x-window-manager &
mate-session &
mate-panel &
The 3 lines in red were what I needed to comment out/add. I can now attach to a virtual desktop in my virtual Ubuntu Mate test machine. I will play with it for a while then try it on some actual hardware. Of course I need to also master accessing the console especially for the wife's machine - saves me a lot of walking from my office to the living room to answer "what's this?"
Thanks again to you both.
Ken