You can add a new device as a mirror to the pool after the fact, but be very careful. If you do it the wrong way then you'll end up with a raid0 kind of setup where you effectively halve your data resiliency.
zpool create mypool /dev/disk1s2
zpool attach mypool /dev/disk2s2
this should result in a mirrored mypool between disk1s2 and disk2s2 but do check this on a dummy config first of all.
If you do:
zpool add mypool /dev/diskofdoom
then you end up raid0-ing the device and it all goes horribly wrong.
> Looking at Tens Complement, I'm more than happy to pay the $40 and give something back to this community, although I can't yet. They say that they're upgradable from silver to gold, just curious if that will work at a later date too.
You'd have to ask them about that. Different levels have various different limitations and I have no idea what they have removed from each level.
Alex
Thanks Alex.
So, it seems that the key here is to create the pool with the first disk, and attach the second disk, rather than add the second - does that sum it up?