"Kaplan, Andrew H." wrote:
> Hi there,
> 
> I tried automating the startup of VNC on my Linux box by modifying
> the /etc/rc.local file with the following entries:
> 
> su kaplan /usr/bin/vncserver :2
> su salee /usr/bin/vncserver :3

That should be...

  su kaplan -c '/usr/bin/vncserver :2'

You might also do...

  su kaplan -c '/usr/bin/vncserver :2' 2>/tmp/vnc.log

so you can capture any error message in /tmp/vnc.log

--
JC<rgen Botz             | While differing widely in the various
[EMAIL PROTECTED]         | little bits we know, in our infinite
                        | ignorance we are all equal. -Karl Popper
_______________________________________________
VNC-List mailing list
[EMAIL PROTECTED]
http://www.realvnc.com/mailman/listinfo/vnc-list

Reply via email to