Thanks for your post.
I have successfully installed vnc4server onto Zorin OS 9.
The only thing that remains is knowing how to invoke the desktop in the vnc start up.
I've successfully done this for Linux Mint 17 MATE and Ubunty 14.04 xfce4 using the following scripts in my ~/.vnc/xstartup. But I have yet to know how to successfully do this for Zorin OS 9. I want to set up a Zorin back end server and be able to manage it remotely. Yet I am not sure about using the built in desktop sharing as vnc viewer allows multiple users to be logged in and running the desktop simultaneously on their vnc session. At least that is what I have been able to do in Mint and Ubuntu/xfce.
Here is my xstartup script for Mint/MATE:
- Code:
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
# 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" &
mate-session &
And here is my xstartup script for Ubuntu/xfce4:
- Code:
#!/bin/sh
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
startxfce4 &
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
So I am trying to come up with a way to get the Zorin OS desktop to show up in a vnc window. Is there a similar way to code up my xstartup script to fire up the Zorin OS 9 desktop? Similar to the mate-session or startxfce4 commands above?
Thanks ahead for any help! I just love the Zorin OS 9 desktop!