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
# fuse/mount.exfat-fuse /dev/dk0 /mntfuse/mount.exfat-fuse: Shared object "libfuse.so.2" not found
It can be worked around with LD_PRELOAD, which throws some errors but does mount the filesystem:
# LD_PRELOAD=/usr/pkg/lib/libfuse.so.2 fuse/mount.exfat-fuse /dev/dk0 /mntmount.exfat-fuse: perfuse_open: setsockopt SO_SNDBUF to 2162688 failed: No buffer space availablemount.exfat-fuse: perfuse_open: setsockopt SO_RCVBUF to 2162688 failed: No buffer space availablemount.exfat-fuse: perfuse_open: setsockopt SO_SNDBUF to 2162688 failed: No buffer space availablemount.exfat-fuse: perfuse_open: setsockopt SO_RCVBUF to 2162688 failed: No buffer space availablemount.exfat-fuse: perfuse_open: setsockopt SO_SNDBUF to 2162688 failed: No buffer space availablemount.exfat-fuse: perfuse_open: setsockopt SO_RCVBUF to 2162688 failed: No buffer space available
After mounting the filesystem like this, it works a little, but writing with block sizes larger than 8191 bytes causes mount.exfat-fuse to error and exit.
After successfully compiling 0b41c6d unmodified:
It can be worked around with LD_PRELOAD, which throws some errors but does mount the filesystem:
After mounting the filesystem like this, it works a little, but writing with block sizes larger than 8191 bytes causes
mount.exfat-fuse
to error and exit.Mounting again with the
-d
flag like this:# LD_PRELOAD=/usr/pkg/lib/libfuse.so.2 fuse/mount.exfat-fuse -d /dev/dk0 /mnt
And writing a single 8191 (1 byte short of 8KiB) block with dd succeeds:
And
mount.exfat-fuse
produces the following output:However, writing an 8KiB or larger block succeeds on the application side:
But causes
mount.exfat-fuse
to error and exit:The text was updated successfully, but these errors were encountered: