Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Levin Zimmermann
go-fuse
Commits
2c2cba15
Commit
2c2cba15
authored
Mar 23, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add GETTING STARTED section.
parent
14272431
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
14 deletions
+24
-14
README
README
+24
-14
No files found.
README
View file @
2c2cba15
GO-FUSE: native bindings for the FUSE kernel module.
See passthrough.go for a file system that exercises all available
functionality. To test it, a tool is provided to mount a local
directory as a loopback:
GETTING STARTED
* examplelib/zipfs.go contains a small and simple read-only filesystem
for zip files. The corresponding command is in example/zipfs/ . For
example,
mkdir /tmp/mountpoint
example/zipfs/zipfs /tmp/mountpoint file.zip &
ls /tmp/mountpoint
* fuse/loopback.go supports all the implemented functionality. A
binary to run is in example/loopback/ . For example
mkdir /tmp/mountpoint
example/loopback/loopback -debug /tmp/mountpoint /some/other/directory &
ls /tmp/mountpoint
(cd example ; gomake)
mkdir mountpoint
./example/loopback -debug -threaded=false mountpoint /some/other/directory &
(cd mountpoint ; ls)
Tested on:
...
...
@@ -16,18 +25,13 @@ Tested on:
- x86 64bits (Ubuntu Lucid).
LICENSE
Like Go, this library is distributed under the new BSD license. See
accompanying LICENSE file.
BENCHMARKS
In benchmarks, Go-fuse's loopback system is about 10 times slower than
equivalent C++ based FUSE filesystem. In practical applications, the
the file system client processing may mask some of these performance
gaps.
the file system client processing may mask some of these performance
gaps.
CREDITS
...
...
@@ -53,3 +57,9 @@ Grep source code for TODO. Major topics:
* Missing support for FUSE_INTERRUPT, FUSE_NOTIFY, CUSE, BMAP, POLL, IOCTL
* Missing support for doing GetAttr/SetAttr on opened files.
LICENSE
Like Go, this library is distributed under the new BSD license. See
accompanying LICENSE file.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment