You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/docs/features/cross-seed/hardlink-mode.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ Reflink mode creates copy-on-write clones of the matched files. Unlike hardlinks
88
88
### When to Use Reflink Mode
89
89
90
90
- You want to cross-seed torrents that hardlink mode would skip due to "extra files share pieces with content"
91
-
- Your filesystem supports copy-on-write clones (BTRFS, XFS on Linux; APFS on macOS)
91
+
- Your filesystem supports copy-on-write clones (BTRFS, XFS on Linux; APFS on macOS; ReFS on Windows)
92
92
- You prefer the safety of copy-on-write over hardlinks
93
93
94
94
### Reflink Requirements
@@ -99,7 +99,12 @@ Reflink mode creates copy-on-write clones of the matched files. Unlike hardlinks
99
99
- The filesystem must support reflinks:
100
100
-**Linux**: BTRFS, XFS (with reflink=1), and similar CoW filesystems
101
101
-**macOS**: APFS
102
-
-**Windows/FreeBSD**: Not currently supported
102
+
-**Windows**: ReFS on the same volume as the source files and reflink base directory
103
+
-**FreeBSD**: Not currently supported
104
+
105
+
:::note
106
+
Windows reflink mode uses ReFS block cloning (requiring a ReFS filesystem). NTFS is not supported. If the matched source path is a symlink, qui resolves it before cloning, and the resolved source plus the reflink base directory still need to be on the same ReFS volume. If reflink creation fails, fallback still depends on the existing "Fallback to regular mode" setting.
107
+
:::
103
108
104
109
:::tip
105
110
On Linux, check the filesystem type with `df -T /path` (you want `xfs`/`btrfs`, not `fuseblk`/`fuse.mergerfs`/`overlayfs`).
0 commit comments