forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zahoor Mohamed
11e7a712f4
|
8 years ago | |
---|---|---|
.. | ||
fs | 8 years ago | |
fuseutil | 8 years ago | |
LICENSE | 8 years ago | |
README.md | 8 years ago | |
buffer.go | 8 years ago | |
debug.go | 8 years ago | |
error_darwin.go | 8 years ago | |
error_freebsd.go | 8 years ago | |
error_linux.go | 8 years ago | |
error_std.go | 8 years ago | |
fuse.go | 8 years ago | |
fuse.iml | 8 years ago | |
fuse_darwin.go | 8 years ago | |
fuse_freebsd.go | 8 years ago | |
fuse_kernel.go | 8 years ago | |
fuse_kernel_darwin.go | 8 years ago | |
fuse_kernel_freebsd.go | 8 years ago | |
fuse_kernel_linux.go | 8 years ago | |
fuse_kernel_std.go | 8 years ago | |
fuse_linux.go | 8 years ago | |
mount.go | 8 years ago | |
mount_darwin.go | 8 years ago | |
mount_freebsd.go | 8 years ago | |
mount_linux.go | 8 years ago | |
options.go | 8 years ago | |
options_darwin.go | 8 years ago | |
options_freebsd.go | 8 years ago | |
options_linux.go | 8 years ago | |
protocol.go | 8 years ago | |
unmount.go | 8 years ago | |
unmount_linux.go | 8 years ago | |
unmount_std.go | 8 years ago |
README.md
bazil.org/fuse -- Filesystems in Go
bazil.org/fuse
is a Go library for writing FUSE userspace
filesystems.
It is a from-scratch implementation of the kernel-userspace
communication protocol, and does not use the C library from the
project called FUSE. bazil.org/fuse
embraces Go fully for safety and
ease of programming.
Here’s how to get going:
go get bazil.org/fuse
Website: http://bazil.org/fuse/
Github repository: https://github.com/bazil/fuse
API docs: http://godoc.org/bazil.org/fuse
Our thanks to Russ Cox for his fuse library, which this project is based on.