Skip to content

Instantly share code, notes, and snippets.

@kmvan
Last active December 20, 2019 15:25
Show Gist options
  • Save kmvan/c8340596666e6254317ebc19d93981bd to your computer and use it in GitHub Desktop.
Save kmvan/c8340596666e6254317ebc19d93981bd to your computer and use it in GitHub Desktop.
Linux NFS

SERVER

  • apt install nfs-kernel-server
  • vi /etc/exports
  • /mnt/sharedfolder clientIP(rw,no_root_squash,sync,no_subtree_check)
  • exportfs -a

CLIENT

  • apt-get install nfs-common
  • mount serverIP:/exportFolder_server /mnt/mountfolder_client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment