|
7 年之前 | |
---|---|---|
.. | ||
fsutil | 7 年之前 | |
fuseops | 7 年之前 | |
fusetesting | 7 年之前 | |
fuseutil | 7 年之前 | |
internal | 7 年之前 | |
samples | 7 年之前 | |
.gitignore | 7 年之前 | |
.travis.yml | 7 年之前 | |
LICENSE | 7 年之前 | |
README.md | 7 年之前 | |
connection.go | 7 年之前 | |
conversions.go | 7 年之前 | |
debug.go | 7 年之前 | |
doc.go | 7 年之前 | |
errors.go | 7 年之前 | |
freelists.go | 7 年之前 | |
mount.go | 7 年之前 | |
mount_config.go | 7 年之前 | |
mount_darwin.go | 7 年之前 | |
mount_linux.go | 7 年之前 | |
mount_test.go | 7 年之前 | |
mounted_file_system.go | 7 年之前 | |
ops.go | 7 年之前 | |
unmount.go | 7 年之前 | |
unmount_linux.go | 7 年之前 | |
unmount_std.go | 7 年之前 |
This package allows for writing and mounting user-space file systems from Go. Install it as follows:
go get -u github.com/jacobsa/fuse
Afterward, see the documentation for the following three packages:
Package fuse provides support for mounting a new file system and reading requests from the kernel.
Package fuseops enumerates the supported requests from the kernel, and provides documentation on their semantics.
Package fuseutil, in particular the FileSystem
interface, provides a
convenient way to create a file system type and export it to the kernel via
fuse.Mount
.
Make sure to also see the sub-packages of the samples package for examples and tests.
This package owes its inspiration and most of its kernel-related code to bazil.org/fuse.