libfuse/README.NFS

18 lines
790 B
Plaintext
Raw Normal View History

2006-09-30 21:15:25 +08:00
FUSE module in official kernels (>= 2.6.14) don't support NFS
2005-09-26 17:07:43 +08:00
exporting. In this case if you need NFS exporting capability, use the
'--enable-kernel-module' configure option to compile the module from
this package. And make sure, that the FUSE is not compiled into the
kernel (CONFIG_FUSE_FS must be 'm' or 'n').
2004-01-20 02:20:49 +08:00
You need to add an fsid=NNN option to /etc/exports to make exporting a
FUSE directory work.
You may get ESTALE (Stale NFS file handle) errors with this. This is
because the current FUSE kernel API and the userspace library cannot
2004-01-26 19:28:44 +08:00
handle a situation where the kernel forgets about an inode which is
2004-01-20 02:20:49 +08:00
still referenced by the remote NFS client. This problem will be
addressed in a later version.
2005-09-26 17:07:43 +08:00
In the future it planned that NFS exporting will be done solely in
userspace.