Difference between revisions of "Creating a ZFS mirror pool"

From Peter Pap's Technowiki
Jump to: navigation, search
(Created page with "It's ridiculously simple: zpool create name_of_pool mirror disk1 disk2 So it would look like: zpool create export_pool mirror c0t0d0 c0t1d0")
 
 
Line 6: Line 6:
  
 
   zpool create export_pool mirror c0t0d0 c0t1d0
 
   zpool create export_pool mirror c0t0d0 c0t1d0
 +
 +
This will create the pool 'export_pool' and will mount it as /export_pool

Latest revision as of 03:54, 18 March 2011

It's ridiculously simple:

 zpool create name_of_pool mirror disk1 disk2

So it would look like:

 zpool create export_pool mirror c0t0d0 c0t1d0

This will create the pool 'export_pool' and will mount it as /export_pool