Read error: Value too large for defined data type

Issue #56 invalid
Chad Darling created an issue

I am trying to utilize fuse-zip on a ODROID-HC2 single board computer. It is using a 32 bit debian OS (OMV4.x), a 32 bit ARMv71 processor, and a HDD formatted as XFS.

I can transfer a large zip file (3.8GB), but when I try to open it. I receive this error:

Read error: Value too large for defined data type

Comments (2)

  1. Alexander Galanin repo owner

    This error mean that fuse-zip and required libraries are compiled without Large File Support. See error description in GNU coreutils FAQ.

    Ask fuse-zip and libzip package maintainers to compile packages with LFS support or try to re-compile packages manually. As far as I know, it will be enough to add -D_FILE_OFFSET_BITS=64 into CFLAGS/CXXFLAGS. Note that this will break all binaries that use libzip.

  2. Log in to comment