rick schrieb: > What's the best way to read a byte of data directly from a block device > (a scsi hard drive) on Linux using Python?
Reading it? Using read?
f = open("/dev/foo")
f.read(1)
Diez
--
http://mail.python.org/mailman/listinfo/python-list
