I know you can set this only when you create a dataset.
So I created a new dataset:
zfs create -o casesensitivity=mixed pool2/data
Then I transferred a snapshot of the original dataset, that has casesensitivity=sensitiv:
zfs send pool1/data@auto-xxx | zfs receive -F receive pool2/data
And boom the pool2/data now has casesensitivity=sensitiv.
I assume, the "zfs receive -F" sets the options of the dataset to those of the snapshot and that was casesensitivity=sensitiv
Is there a way to send a casesensitivity=sensitiv snapshot to a casesensitivity=mixed dataset?
If that is not possible, are there other ways to accomplish the task of migrating a dataset from casesensitivity=sensitiv to casesensitivity=mixed ?
So I created a new dataset:
zfs create -o casesensitivity=mixed pool2/data
Then I transferred a snapshot of the original dataset, that has casesensitivity=sensitiv:
zfs send pool1/data@auto-xxx | zfs receive -F receive pool2/data
And boom the pool2/data now has casesensitivity=sensitiv.
I assume, the "zfs receive -F" sets the options of the dataset to those of the snapshot and that was casesensitivity=sensitiv
Is there a way to send a casesensitivity=sensitiv snapshot to a casesensitivity=mixed dataset?
If that is not possible, are there other ways to accomplish the task of migrating a dataset from casesensitivity=sensitiv to casesensitivity=mixed ?