Hey,
I'm writing a proposal and talking about security. So far my weak point is that one computer holds all the Bitcoins.
Is there a way to have an online wallet spread over 8 computers and requiring confirmation from all 8 parties to carry out a command?
The closest idea I got was using GPG to encrypt different parts of the wallet and then one node reconstructs the wallet, does the command and re-splits it up amongst the other nodes.
Splitting your wallet is not a bad idea. Just be carefull to leave more than one instance of each part, though.
Actually if you use N computers, then I think you should make N copies for each Nth part of your file, otherwise you increase the risk of loosing everything in case one computer is down. But you need to study it more seriously if you want an exact probabilistic approach to this.
Anyway, spliting a file in several parts is easy in unix. Just use the 'split' command.