.
If you need to run a PCNFSD daemon on the server, you will want to
add it to the rc scripts that get started when the Unix server boots
up. For Solaris, you would add a script to
#!/bin/sh
PCNFSD_NAME=hclnfsd # in /opt/pcnfs/bin
PATH=/opt/pcnfsd/bin:$PATH
export PATH
case "$1" in
start )
# The named directory is used as a temporary area for print spool files.
$PCNFSD -A /var/run
;;
stop )
pkill $PCNFSD
;;
esac
exit 0