Gelöst mit diesem Artikel: [GUIDE] Windows Vorherige Versionen und Samba (Btrfs - Atomic COW - Volume Shadow Copy)
So reproduzieren Sie eine funktionierende Konfiguration auf Fedora22
1) Erstellen Sie ein BTRFS-Subvolumen
mount /dev/sda5 /mnt #your BTRFS partition btrfs subvolume create /mnt/share brtfs subvolume create /mnt/share/.snapshots umount /mnt
2) fstab editieren (oder mounten)
UUID= /share brtfs subvol=share 0 0 UUID= /share/.snapshots btrfs subvol=share/.snapshots 0 0
3) Erstellen Sie eine Samba-Freigabe
[btrfs] path = /share vfs objects = shadow_copy2 shadow:format = @GMT_%Y.%m.%d-%H.%M.%S shadow:sort = desc shadow:snapdir = .snapshots
4) Erstellen Sie einen Readonly-Snapshot
brtfs subvolume snapshot -r /share /share/.snapshots/@GMT_`date +%Y.%m.%d-%H.%M.%S`
5) So löschen Sie einen Schnappschuss
btrfs subvolume delete /share/.snapshots/@GMT_2015.07.31-14.01.20