Listing 5 File system layout for the clients. Note the
use of /home/data for scratch space
########################################################################
# /etc/fstab on the running clients
########################################################################
# Keep this as ./default/fstab so the makefile can find it.
#
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
privalias:/usr /usr nfs ro,hard,intr 0 0
privalias:/usr/local /usr/local nfs ro,hard,intr 0 0
privalias:/home /home nfs rw,hard,intr 0 0
privalias:/home/data /home/data nfs rw,hard,intr 0 0
privalias:/opt /opt nfs ro,hard,intr 0 0
# end of file
|