fuse
fuse copied to clipboard
FUSE library for Go. go get bazil.org/fuse
After a bit of searching, I think `$ sed --in-place 's!hellofs subdirectory!examples/hellofs subdirectory!' fuse.go` would be helpful to future readers. https://github.com/bazil/fuse/blob/fb710f7dfd05053a3bc9516dd5a7a8f84ead8aab/fuse.go#L40
hello, are there any plans to support this request type? it would speed up reading directories a lot. in my case i have directories with 1000 files, so performance suffers...
FUSE passthrough can enable must faster reads, close to local file system. https://lore.kernel.org/lkml/[email protected]/
https://en.wikipedia.org/wiki/Sticky_bit The request I received by `bazil/fuse` does not have this bit. I wonder whether libfuse has support for sticky bit at all? This showed up in pjdfstest POSIX tests...
Adds support for handling ioctl requests made to fuse. This implementation comes from looking at the fuse implementation to fill in the missing ioctl functionality. Note that fuse servers do...
A recent change to FreeBSD has broken apps using the bazil.org/fuse lib. As of the following commit to the FreeBSD FUSE driver: CURRENT: https://cgit.freebsd.org/src/commit/?id=7b8622fa220b9c08041102f638f848c48e022644 STABLE: https://cgit.freebsd.org/src/commit/?id=7b096a997fad199eddccfb6784e4b85184d9af17 all apps using this...
Would it be possible to support copy_file_range? That could potentially speed up file copies enormously for filesystems that are copy on write or remote. https://libfuse.github.io/doxygen/structfuse__operations.html#a8dab2194663f561ef7db54de2ca35694
Currently, `fusermount` is hard-coded in some places [1][2]. Could you consider support `fusermount3` from libfuse3 [3] as well? I tried fusermount3 with [restic](https://github.com/restic/restic) and it works: ``` $ mkdir foo...
Not entirely sure what's going on. I can see GenerateInode being invoked but the inodes are not assigned. I wrote a cheaper function to try and get some generation going,...