Hello mike,

Friday, August 22, 2008, 8:11:36 AM, you wrote:

m> see, originally when i read about zfs it said it could expand to
m> petabytes or something. but really, that's not as a single
m> "filesystem" ? that could only be accomplished through combinations of pools?

m> i don't really want to have to even think about managing two
m> separate "partitions" - i'd like to group everything together into
m> one large 13tb instance (or however big it winds up being) - is that not 
possible?


you can do something like:

    zpool create test raidz2 d1 d2 d3 d4 d5 raidz2 d6 d7 d8 d9 d10 \
                      raidz2 d11 d12 d13 d14 d15

    zfs create test/fs1
    zfs create test/fs2
    zfs create test/fs3


That way you have created a pool which is made of 3 raid-z2 groups and
you have then created additional 3 file systems withint the pools,
each of them can use all space in a pool by default.

Later on you can do:

      zpool add test raidz2 d16 d17 d18 d19 d20



    
    
-- 
Best regards,
 Robert Milkowski                            mailto:[EMAIL PROTECTED]
                                       http://milek.blogspot.com

_______________________________________________
zfs-discuss mailing list
zfs-discuss@opensolaris.org
http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Reply via email to