On this tape you file find the following files:

	README		you're reading it
	fsserver	CMFS file server with block cache
	unfsd		user mode nfs daemon
	unfsmntd	user mode nfs mount daemon

	unfsd.8		man page for unfsd and unfsmntd
	unfsd_exports.5	man page for /usr/local/etc/unfsd_exports
	exports.example	sample /usr/local/etc/unfsd_exports file

	ugidd.sun4
	ugidd.vax
	ugidd.8		man page for ugidd

If you're DataVault is not already running CM BSS 6.1 Final,
upgrade it before continuing!

On a DataVault running 6.1 Final,

. select a directory somewhere and tar in the tape contents

. if the fsserver is already running, kill it:

	kill -TERM <pid>

. move the 6.1F fsserver to somewhere safe (just in case):

	mv /usr/local/etc/fsserver /usr/local/etc/fsserver.61

. move the files:

	fsserver
	unfsd
	unfsmntd

to the /usr/local/etc directory.

. read the unfsd_exports(5) and unfsd(8) man pages and then create
the file /usr/local/etc/unfsd_exports

. in /etc/rc.local, add the lines:

#
# NFS service
#
(echo -n 'User mode NFS daemons:') > /dev/console
if [ -f /usr/local/etc/unfsmntd ] ; then
        /usr/local/etc/unfsmntd &
        (echo -n ' unfsmntd') > /dev/console
fi
if [ -f /usr/local/etc/unfsd ] ; then
        /usr/local/etc/unfsd -p
        (echo -n ' unfsd') > /dev/console
fi
(echo '.') > /dev/console

somewhere near the bottom after the lines that start up fsserver (the
very end of the file is fine).

. reboot the datavault; this should start up the new fsserver, the
user mode nfs daemon and the user mode nfs mount daemon.

