Linux Filesystems – Which Support Reflinks

filesystemslinuxreflink

btrfs supports reflinks, XFS supports reflinks (since 2017 i think?), any other filesystems support it?

truncate -s 1G test.file;
cp --reflink=always test.file ref.test.file;

Best Answer

Support for reflinks is indicated using the remap_file_range operation, which is currently (5.11) supported by Btrfs, CIFS, NFS 4.2, OCFS2, overlayfs, and XFS.

Related Question