I would like to create a raidz1 pool with 512 b disks that will be ready for 4K for future upgrades. Since ashifts cannot be changed once the raidz1 is created, I need to create them now.
Currently I have 4 hdds, all of them are 512 (.75, 1, 1 and 2 Gb respectively)
I am running FN8 and it does not yet support 4k disks. So, I figure I need to do it from the CLI and then import.
The idea is to create a raidz1 with an ashift of 12 now (even though I'll get some performance hit since I am using 512 hdd's) so that later on when those hdds get replaced by 4K disks they will be optimized.
From the CLI to create a raidz1 vol01 with an ashift of 12:
gnop create -S 4096 /dev/ad4
zpool create -m /mnt/zvol01 vol01 ad4.nop ad6 ad8 ad10
zpool export vol01
gnop destroy /dev/ad4.nop
zpool import
zpool import vol01
at this point it should be OK so, check:
zpool status
zpool list
then
zpool export vol01
and then from the GUI an auto import to have it visible in FN8.
Would this work?
Currently I have 4 hdds, all of them are 512 (.75, 1, 1 and 2 Gb respectively)
I am running FN8 and it does not yet support 4k disks. So, I figure I need to do it from the CLI and then import.
The idea is to create a raidz1 with an ashift of 12 now (even though I'll get some performance hit since I am using 512 hdd's) so that later on when those hdds get replaced by 4K disks they will be optimized.
From the CLI to create a raidz1 vol01 with an ashift of 12:
gnop create -S 4096 /dev/ad4
zpool create -m /mnt/zvol01 vol01 ad4.nop ad6 ad8 ad10
zpool export vol01
gnop destroy /dev/ad4.nop
zpool import
zpool import vol01
at this point it should be OK so, check:
zpool status
zpool list
then
zpool export vol01
and then from the GUI an auto import to have it visible in FN8.
Would this work?