diff options
author | rsc <devnull@localhost> | 2006-07-23 03:02:03 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2006-07-23 03:02:03 +0000 |
commit | 5551e51d2b9df4e289ea3cb1350db4d5f5444df2 (patch) | |
tree | 9374211c6c3d9d18765ccfe4c5895b086a9e6928 /man/man4 | |
parent | 30f8beab329834c1968c391e35890e3cd9917895 (diff) | |
download | plan9port-5551e51d2b9df4e289ea3cb1350db4d5f5444df2.tar.gz plan9port-5551e51d2b9df4e289ea3cb1350db4d5f5444df2.tar.bz2 plan9port-5551e51d2b9df4e289ea3cb1350db4d5f5444df2.zip |
9pfuse
Diffstat (limited to 'man/man4')
-rw-r--r-- | man/man4/9pfuse.4 | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/man/man4/9pfuse.4 b/man/man4/9pfuse.4 new file mode 100644 index 00000000..8d70885b --- /dev/null +++ b/man/man4/9pfuse.4 @@ -0,0 +1,62 @@ +.TH 9PFUSE 4 +.SH NAME +9pfuse \- mount 9P service via FUSE +.SH SYNOPSIS +.B 9pfuse +[ +.B -D +] +[ +.B -a +.I t +] +[ +.B -e +.I t +] +.I addr +.I mtpt +.SH DESCRIPTION +.I 9pfuse +mounts the 9P service running at +.I addr +onto +.I mtpt +using the FUSE user-level file system driver. +.PP +.I 9pfuse +sets up the initial mount and then forks itself +into the background, where it serves the FUSE +protocol, translating the requests into 9P. +.PP +The options are: +.TP +.B -D +Print each FUSE and 9P message to standard error. +.TP +.B -a\fI t +Set the kernel cache timeout for attribute information +to +.I t +(default 1.0) seconds. +.TP +.B -e\fI t +Set the kernel cache timeout for directory entries to +.I t +(default 1.0) seconds. +.PD +.PP +The +.I fusermount +binary must exist in the current search path. +.PP +FUSE is available for Linux 2.4.21 and later, +Linux 2.6, and FreeBSD 6.x and later. +.SH SEE ALSO +FUSE Homepage, +.HR http://fuse.sourceforge.net +.PP +FUSE for FreeBSD, +.HR http://fuse4bsd.creo.hu +.SH SOURCE +.B \*9/src/cmd/9pfuse |