Andi, I'm glad to hear you're working on this, and I hope your problem can be resolved. Having a mini httpserver on board could be a powerful tool. Would you be so kind as to describe exactly (as in, instructions for Linux newbies) how you installed Python on your 770? John
from BaseHTTPServer import HTTPServer from SimpleHTTPServer import SimpleHTTPRequestHandler host, port= '', 50000 print 'listening on port', port srvr= HTTPServer((host, port), SimpleHTTPRequestHandler) srvr.serve_forever()