blob: 11a88778e91e082cb7ea1c9c0d326885867e1d7a [file] [log] [blame]
Miklos Szeredi307242f2004-01-26 11:28:44 +00001NFS exporting is supported on kernels versions >= 2.6.0. For 2.4.X
2kernels the exporting infrastructure is not refined enough, so don't
3expect this to work.
Miklos Szeredie815c032004-01-19 18:20:49 +00004
Miklos Szeredi217042f2005-09-26 09:07:43 +00005Also FUSE module in official kernels (>= 2.6.14) don't support NFS
6exporting. In this case if you need NFS exporting capability, use the
7'--enable-kernel-module' configure option to compile the module from
8this package. And make sure, that the FUSE is not compiled into the
9kernel (CONFIG_FUSE_FS must be 'm' or 'n').
10
Miklos Szeredie815c032004-01-19 18:20:49 +000011You need to add an fsid=NNN option to /etc/exports to make exporting a
12FUSE directory work.
13
14You may get ESTALE (Stale NFS file handle) errors with this. This is
15because the current FUSE kernel API and the userspace library cannot
Miklos Szeredi307242f2004-01-26 11:28:44 +000016handle a situation where the kernel forgets about an inode which is
Miklos Szeredie815c032004-01-19 18:20:49 +000017still referenced by the remote NFS client. This problem will be
18addressed in a later version.
Miklos Szeredi217042f2005-09-26 09:07:43 +000019
20In the future it planned that NFS exporting will be done solely in
21userspace.