I have model b+ and I've installed tightvncserver, and can successfully start the VNC manually, but once I reboot I need to start it again, although I have configured it to start automatically, by following the instructions here word by word.
How can I find the problem?
/bin/su pi -c "/usr/bin/vncserver :1 -geometry 1280×800 -depth 16 -pixelformat rgb565" &-- to the end of/etc/rc.localand see if that works. – goldilocks Jan 01 '15 at 16:30root(so don't includesudo). Looking at the man page I don't see how that will matter (it does not have to be started by the user that uses it). Also you must include the full path,/usr/bin/vncserver. If it normally does not background itself, also put a&at the end. – goldilocks Jan 01 '15 at 16:52tightvncserverto autostart. I have tried most, if not all, of the suggested scripts, with no success. In the end I just gave up, andsshinto the Pi and manually starttightvncserver. – Milliways Jan 01 '15 at 22:58