We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cp --reflink=auto
For various technical reasons, it is not possible to reflink between different ZFS datasets. However, instead of calling ioctl(FICLONE) one can call copy_file_range() which ZFS will try to handle with block cloning, but not always. It might be useful to have fclones dedupe mimic the behavior of coreutils>=9.1 which tries ioctl(FICLONE) and then falls back to copy_file_range(), at least if the files are on a ZFS dataset.
ioctl(FICLONE)
copy_file_range()
fclones dedupe
coreutils>=9.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For various technical reasons, it is not possible to reflink between different ZFS datasets. However, instead of calling
ioctl(FICLONE)
one can callcopy_file_range()
which ZFS will try to handle with block cloning, but not always. It might be useful to havefclones dedupe
mimic the behavior ofcoreutils>=9.1
which triesioctl(FICLONE)
and then falls back tocopy_file_range()
, at least if the files are on a ZFS dataset.The text was updated successfully, but these errors were encountered: