Would I just run my X11VNC startup line here?<br><br><span style="font-weight: bold;">*/5 * * * * (x11vnc -logfile $HOME/.x11vnc.log -rfbauth $HOME/.vnc/passwd -forever -bg) &gt; /dev/null 2&gt;&amp;1</span><br><br><br>Interesting? Will this work with KDE also? Where would put the script?
<br><br><span style="font-weight: bold;">Another option you have if you're using gdm is to put this in</span><br style="font-weight: bold;"><span style="font-weight: bold;">/etc/X11/gdm/PreSession</span><span style="font-weight: bold;">
/Default:</span><br style="font-weight: bold;"><div style="direction: ltr;"><br style="font-weight: bold;"><span style="font-weight: bold;">### Only start x11vnc listeners if there isn't one already running.</span><br style="font-weight: bold;">
<span style="font-weight: bold;">X11VNCSTATUS=`ps -e | grep x11vnc | grep -v grep | wc -l | awk '{print $1}'`</span><br style="font-weight: bold;"><span style="font-weight: bold;">if [ $X11VNCSTATUS -eq 0 ]</span><br style="font-weight: bold;">
<span style="font-weight: bold;">then</span><br style="font-weight: bold;"><span style="font-weight: bold;"> &nbsp; &nbsp;/usr/bin/x11vnc -nap -wait 50 -passwd xxxxxxx -display :0 -forever</span><br style="font-weight: bold;"><span style="font-weight: bold;">
-o /var/log/x11vnc.log -bg -allow 192.168.0. -norepeat</span><br style="font-weight: bold;"><span style="font-weight: bold;">fi</span><br style="font-weight: bold;"><br style="font-weight: bold;"><br>Correct me if I'm wrong VNC will not allow you to log into an existing session, correct? I know X11VNC does.
<br><br>Thanks for your suggestions.<br><br></div><br><br>