Ross wrote:
> I'm looking to create a new pool for storing CIFS files.  I know that I need 
> to set casesensitivity=mixed, but appears I can only set this option when 
> using the "zfs create" command, I get told it's not a valid pool property if 
> I try to use it with "zpool create".
> 
> Is there no way to create a pool such that the default filesystem will have 
> casesensitivity=mixed?  I'd rather not have to remember to apply this setting 
> for every filesystem I create within this pool.

# zpool create -O casesensitivity=mixed foo c1d1 c2d2
# zfs get casesensitivity foo
NAME  PROPERTY         VALUE        SOURCE
foo   casesensitivity  mixed        -

Note the use of -O rather than -o.  -O is for setting dataset properties 
on the top level dataset, -o is for setting pool properties.

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

Reply via email to