go-fuse icon indicating copy to clipboard operation
go-fuse copied to clipboard

FUSE bindings for Go

Results 74 go-fuse issues
Sort by recently updated
recently updated
newest added

Added support for setting max-pages via config. Also increased the max write from 128k to 1M. Signed-off-by: Anagh Kumar Baranwal

During handshaking, [OSXFUSE announces protocol version 7.19](https://github.com/osxfuse/kext/blob/master/osxfuse/fuse_kernel.h#L118-L122). go-fuse, however, negotiates to version 7.8 instead (`_OUR_MINOR_VERSION == 8`). This is inconvenient, as support for sending invalidation requests is only part of...

Dear all, I currently try to make a package for FreeBSD for gocryptfs (github.com/rfjakob/gocryptfs). But while compiling it, I see error messages like: ``` # github.com/hanwen/go-fuse/v2/fuse vendor/github.com/hanwen/go-fuse/v2/fuse/types.go:557:2: undefined: Attr vendor/github.com/hanwen/go-fuse/v2/fuse/types.go:585:2:...

Feature

OSXFUSE applies a 60-second timeout for file operations. This is inconsistent with how FUSE works on Linux, where operations last as long as the daemon is willing to let them...

Also use interfaces for ReadDir(Plus)EntryList rather than structs to allow for easier testing. Exposing the cookies allows users to take full control which allows them to write POSIX correct implementations....

Ports commit fee50bf01cd60f66c82493761756b2c345a86aa3 to `poll_darwin.go` in order to allow read-only mounts on Darwin as well. Fixes https://github.com/rfjakob/gocryptfs/issues/595 where we can't use `gocryptfs -ro` or `gocryptfs -reverse` on macOS because go-fuse...

The Linux kernel doesn't seem to apply any I/O timeouts on FUSE operations. For FUSE daemons written in Go, this is generally speaking a pretty decent policy. Timeouts can in...

Current behavior: * Check for `fusermount3`, * Fall back to `fusermount` Suggested behavior: * Check for `fusermountN` with `N`= any integer and use the highest one * fall back to...

![image](https://user-images.githubusercontent.com/18275952/160070704-aeafde5c-0c15-4c7d-901c-fa76f867365e.png)