Last active
October 8, 2015 09:00
-
-
Save AaronPhalen/334e88156014f7b4f51b to your computer and use it in GitHub Desktop.
Basic explanation of network file system (nfs) in linux.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Author: Aaron Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
Summary: | |
The network file system (nfs) can be used and configured to share a server | |
disk with a client. For example, a server with the file system /home | |
can be made available as /home on the client server, given that the | |
host server is running. Additionally, this file system can be renamed on the client, | |
however this is generally not good practice and using the same name is recommended. | |
Permissions can also be set on the server, restricting read, write, execute | |
on the client server as needed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment