I have a working Samba share that I'm trying to implement Shadow Copy support on:
Here's what my snapshots look like, so I hope my
The filesystem is mounted directly at the root of the share:
And yet, even after restarting the Samba service, Windows Explorer reports "no previous versions available."
What am I missing?
Code:
[test]
path = /data/test
browsable = yes
writable = yes
create mask = 0770
directory mask = 0770
vfs objects = zfsacl shadow_copy2
nfs4: mode = special
nfs4: chown = true
nfs4: acedup = merge
map system = no
map archive = no
map readonly = no
store dos attributes = yes
;inherit owner = yes
inherit owner = windows and unix
hide unreadable = yes
admin users = tom mary hans jim
valid users = tom mary hans jim
comment = Test dataset with Previous Versions enabled
shadow:snapdir = .zfs/snapshot
shadow:sort = desc
shadow:format = %Y%m%d%H%M%S-SAN
Here's what my snapshots look like, so I hope my
shadow:format
directive is correct:
Code:
# zfs list -rt snap tank/mountable/test
NAME USED AVAIL REFER MOUNTPOINT
tank/mountable/test@20250402122744-SAN 146K - 238K -
tank/mountable/test@20250402122805-SAN 146K - 256K -
The filesystem is mounted directly at the root of the share:
Code:
# df -h /data/test
Filesystem Size Used Avail Capacity Mounted on
tank/mountable/test 57T 293K 57T 0% /data/test
And yet, even after restarting the Samba service, Windows Explorer reports "no previous versions available."
What am I missing?