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
I would like to copy files across NTFS partitions using rsync -X (which is supposed to preserve xattrs). I expect the plugin to decompress files on the source partition, so that they are written uncompressed on the target partition. However this does not work because Linux cannot handle the user.WofCompressedData xattr. Even the xattr utility cannot properly read attributes on compressed files.
Here is for instance what happens when doing xattr '/c/Program Files (x86)/windows nt/accessories/wordpad.exe' on a Win10 partition. For some reason the attribute user.WofCompressedData always has size 65536, which is illegal on Linux (XATTR_SIZE_MAX is 65536).
I would like to copy files across NTFS partitions using
rsync -X
(which is supposed to preserve xattrs). I expect the plugin to decompress files on the source partition, so that they are written uncompressed on the target partition. However this does not work because Linux cannot handle theuser.WofCompressedData
xattr. Even thexattr
utility cannot properly read attributes on compressed files.Here is for instance what happens when doing
xattr '/c/Program Files (x86)/windows nt/accessories/wordpad.exe'
on a Win10 partition. For some reason the attributeuser.WofCompressedData
always has size 65536, which is illegal on Linux (XATTR_SIZE_MAX
is 65536).Could there be a way for the system compression plugin to hide this attribute? Or is this a task for
ntfs-3g
instead?The text was updated successfully, but these errors were encountered: