NFS Client Networking  «Prev  Next»
Lesson 2 Network File System (NFS)
Objective Describe the Network File System (NFS).

Network File System (NFS)

When users log in to networked computers, they naturally expect to have access to their files. It doesn't matter to the users that the files are stored on a particular partition on a particular host. So, how do they gain access to it? If you configure a computer to use the Network File System (NFS), users can view remote filesystems just like they do local filesystems.

Placing the home directory structure on a single server

For example, in the image below, a single server holds the home directories for all the users. When a client makes a request for information stored in the user's home directory, Linux knows to ask the server to supply the information instead of searching the local hard-drive. It doesn't matter which computer a user logs in to, because the home directory is located in a centralized location and accessed with NFS.
NFS servers supply a uniform filesystem to hosts [host01, host02, host03, host04]

Use NFS to share all types of file data

Of course, NFS is useful for much more than sharing home directory file space. NFS can share files among virtually all UNIX-type and many non-UNIX-type computers.
With NFS, you can also arrange data on the network to make both user sessions and system upgrades more efficient.
For example, if different users on a network perform specific jobs, they need access to different tools. Network administrators might place these tools on one or more servers and NFS clients then can access them as though the tools individually were located on each computer. Not only do you save disk space on the clients, but when you put the newest version of the software on the server, the entire network is updated.
The next lesson defines and explains remote procedure call.