I have a single-drive pool consisting of a 2TB HDD. I have two 1TB drives I can use in mirror - I'd like to add redundancy to my pool.
How can I attach these two drives as a single device so that they can be used as a striped mirror?
Let's call my 2TB drive is sda
, the blank 1TB drives are sdb
and sdc
.
I tried: zfs attach tank sda sdb sdc
but that says too many arguments
.
I tried: zfs attach tank sda sdb
but that says device is too small
I tried: zfs attach tank sda sdb+sdc
but that says no such device in /dev
I tried: zfs attach tank sda sdb,sdc
but that says no such device in /dev
I've read the manual and searched the web - I am out of ideas.
I guess I could try to create a new striped pool from these two 1TB drives, create a zvol inside and use that as a mirror for my primary pool, but this is probably going to give me not enough capacity for a mirror anyway, plus a lot of unneeded overhead.
How can I do this?