blob: a6f48c561e0b92d69f731f2a466e56d169a20205 [file] [log] [blame]
Miklos Szerediff5fa7f2006-09-30 13:15:25 +00001FUSE module in official kernels (>= 2.6.14) don't support NFS
Miklos Szeredi217042f2005-09-26 09:07:43 +00002exporting. In this case if you need NFS exporting capability, use the
3'--enable-kernel-module' configure option to compile the module from
4this package. And make sure, that the FUSE is not compiled into the
5kernel (CONFIG_FUSE_FS must be 'm' or 'n').
6
Miklos Szeredie815c032004-01-19 18:20:49 +00007You need to add an fsid=NNN option to /etc/exports to make exporting a
8FUSE directory work.
9
10You may get ESTALE (Stale NFS file handle) errors with this. This is
11because the current FUSE kernel API and the userspace library cannot
Miklos Szeredi307242f2004-01-26 11:28:44 +000012handle a situation where the kernel forgets about an inode which is
Miklos Szeredie815c032004-01-19 18:20:49 +000013still referenced by the remote NFS client. This problem will be
14addressed in a later version.
Miklos Szeredi217042f2005-09-26 09:07:43 +000015
16In the future it planned that NFS exporting will be done solely in
17userspace.