Sharing ZFS dataset with NFS

0 minute read

To share a dataset via NFS, you need to run the following command:

1sudo zfs set \
2share="name=my-share,path=/path/on/server,prot=nfs,sec=sys,rw=*,public" \
3pool-name/dataset-name

Post-note

I tried to implement this but I couldn’t make it work. So I falled back on the Linux nfs packages implementation.

Sorry ZFS, not this time…