19 lines
746 B
Markdown
19 lines
746 B
Markdown
* https://freebsdfoundation.org/our-work/journal/browser-based-edition/storage-and-filesystems/samba-based-time-machine-backups/
|
|
* https://www.samba.org/samba/docs/current/man-html/vfs_fruit.8.html
|
|
* https://forums.freebsd.org/threads/samba-functions-but-unable-to-use-it-as-a-macos-time-machine-destination.79896/
|
|
|
|
- **`atime=off`**: Disabling `atime` can improve performance by reducing write operations for file access times.
|
|
|
|
Bash
|
|
|
|
```
|
|
sudo zfs set atime=off yourpool/timemachine
|
|
```
|
|
|
|
- **`xattr=sa`**: Stores extended attributes in the file's inode, which can improve performance for applications heavily using xattrs (like macOS).
|
|
|
|
Bash
|
|
|
|
```
|
|
sudo zfs set xattr=sa yourpool/timemachine
|
|
``` |