diff options
author | Menno Duursma <druiloor@zonnet.nl> | 2010-05-11 15:01:38 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-11 15:01:38 +0200 |
commit | 510be39fd321d9fb0532b499b3cdf23dbe742623 (patch) | |
tree | 69956883f252471411d0da4744a9c04c324cc0be /network/unfs3/README | |
parent | 747e62b37ba05521cfe1042fc2d517bdbc2e9e8c (diff) | |
download | slackbuilds-510be39fd321d9fb0532b499b3cdf23dbe742623.tar.gz |
network/unfs3: Initial import
Diffstat (limited to 'network/unfs3/README')
-rw-r--r-- | network/unfs3/README | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/network/unfs3/README b/network/unfs3/README new file mode 100644 index 0000000000..3a18555f83 --- /dev/null +++ b/network/unfs3/README @@ -0,0 +1,20 @@ +UNFS3 is a user-space implementation of the NFSv3 server specification. +It provides a daemon for the MOUNT and NFS protocols, which are used by +NFS clients for accessing files on the server. + +It can be configured to run under an unprivileged user account, can password +protect its exports (even with one-time passwords), and supports ClusterNFS' +file tagging features. + +unfsd conflicts with knfsd (the kernel-mode NFS server) if both are configured +to listen to the same port, which defaults to 2049. + +Slackware Linux 11.0 ships with knfsd, however that defaults to disabled. +To use this NFS server instead, make sure /etc/rc.d/rc.unfsd is executable and +/etc/rc.d/rc.nfsd is not executable. Add the following to /etc/rc.d/rc.local: + +# Start the NFSv3 service +if [ -x /etc/rc/d/rc.unfsd ]; then + /etc/rc/d/rc.unfsd start +fi + |