vault backup: 2025-07-31 09:04:29

This commit is contained in:
Jerry Jacobs 2025-07-31 09:04:29 +02:00
parent 68686646fe
commit 367a50ea12
1 changed files with 18 additions and 1 deletions

View File

@ -1,2 +1,19 @@
* 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://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
```