Good day all,
I am trying to setup a vnc server on my linux mint box. I can get the desktop but it all looks funny, not like the real actual linux mint desktop on my HP Server that I am logging into.
Could someone please post your xstartup config file that results in a normal mint desktop being sent via VNC please?
Here is my current script i found online, but i don't like the looks of it. I want the same desktop as i see via connected monitor.
Thanks ahead
I am trying to setup a vnc server on my linux mint box. I can get the desktop but it all looks funny, not like the real actual linux mint desktop on my HP Server that I am logging into.
Could someone please post your xstartup config file that results in a normal mint desktop being sent via VNC please?
Here is my current script i found online, but i don't like the looks of it. I want the same desktop as i see via connected monitor.
Thanks ahead
Code:
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
gnome-session session=gnome-classic &
gnome-panel&
[ -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 &
$defaultXStartup
= ("#!/bin/sh\n\n".
"# Uncomment the following two lines for normal desktop:\n".
"unset SESSION_MANAGER\n".