NFS has been around for a long time and is available on every Unix
system I've seen in the past ten years. Its
interface is simple: an NFS server has a set of exported filesystems
(usually listed in /etc/exports), and any
permitted client can mount those filesystems using a straightforward
mount invocation. Simply specify
host:/filesystem
as the device, and tell mount that the filesystem
is of type nfs:
# mount -t nfs orange:/home /orange
For more details on NFS on your platform, take a look at the manpages
for exports(5) and mount_nfs(8)
or nfs(5).
NFS mounts can hang up entirely if the NFS server goes down or if you
lose your net connection to it. Often this can require rebooting your
machine to fix. To avoid this, use the soft option
when mounting NFS filesystems. soft tells the NFS
client system to use timeouts, so that losing touch with the NFS
server just causes I/O requests to time out instead of hanging your
machine.