As explained in Chapter 29, you can mount a remote file system on a Linux or Unix computer using the following command: mount -t nfs host:/tree /mnt/point Replace host with the hostname of the server, /tree with the shared directory tree, and /mnt/point with the mountpoint on the local system where you want the shared files to appear. For example, to mount the /publicfiles directory on a host called mack on the local directory /network/publicfiles, you enter the following: mount -t nfs mack:/publicfiles /network/publicfiles |