Free Open Source Computer Lab Monitoring Software Using vnc
Background:
I teach in a PC computer lab. As a teacher, I need to help and observe all of the computers at the same time. For Mac OS X there is a great piece of software called Apple’s Remote Desktop. On the teacher’s computer monitor it presents a live scaled-down view of all of the computer screens in the lab. The teacher can watch all the students doing work and when necessary, focus in on one computer and move that computer’s cursor with their own mouse.
For PC/Windows labs there is a program called vnc which allows one computer to watch and control another computer. Unfortunately, viewing is intended to be only one at a time. But, the great thing about vnc is that it is a free open source project, which means anyone can use it and improve it.
Viewer & Servers:
There are two parts to vnc, a Server program and a Viewer program. The Server program shares a computer’s screen over a network. The Viewer program connects to a server and redraws the remote computer’s screen on it’s monitor. Because the software is split this way, watching multiple computers at the same time just entails creating a bunch of (small) vnc Viewers within a single program. No vnc modifications need to be made to the Server and minimal changes to the Viewer.
I wrote VncThumbnailViewer in Java to make use of TightVNC‘s java vncviewer. The VncViewer code is pretty modular, so creating a program that contains vncviewers wasn’t too complicated.
Read related article at VNC on Mac, we clearly