Hiya Sebastian,
Right, so that looks like a firewire read issue, which comes down to
there not being enough of a time delay between starting up the bus,
setting it into sbp2 mode, and then carrying out the read.
This issue has been fixed in the subversion copy of volatility. You can
manually patch volatility 2.3.1 to take longer over this, by editing the
file at volatility/plugins/addrspaces/ieee1394.py, and finding the line:
self._bus.enable_sbp2()
and change it to read:
self._bus.enable_sbp2()
time.sleep(5)
You can also find a more complete patch at [1]. Hopefully that will
solve your problems, please let me know if you're still having read
difficulties...
Mike 5:)
[1]
https://code.google.com/p/volatility/source/detail?r=3575