Void's Hole

I'm stupid, so i better write it down..

Pool Related Commands

  • zpool create datapool c0t0d0 - Create a basic pool named datapool
  • zpool create -f datapool c0t0d0 - Force the creation of a pool
  • zpool create -m /data datapool c0t0d0 - Create a pool with a different mount point than the default.
  • zpool create datapool raidz c3t0...

Starting Point :
Single XFS HDD with a whole bunch of Data..

Planned Setup:
ZFS Mirror without loosing any Data..

Save your Data

First things first: DO A BACKUP !!
and then 5 more just to be absolutely sure!

  1. create single ZFS drive: zpool create -m /data data /dev/sdb
  2. copy dat...