Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.11 KB

share-nfs-folder.md

File metadata and controls

32 lines (24 loc) · 1.11 KB

Share NFS folder

NAS

  • Control Panel -> File Services -> NFS
  • Enable NFS service
  • Control Panel -> Shared Folder
  • Select the shared folder that you want to access with your NFS
  • Permission -> Everyone -> Full Control (??)
  • NFS Permissions -> Create
    • Hostname or IP: e.g. 192.168.0.0/255.255.255.0
    • Privilege: Read/Write
    • Squash: No mapping
    • Security: sys
    • Allow users to access mounted subfolders

Linux Client

  • Create the folder /mnt/myfolder
  • Add the following line to /etc/fstab (e.g assuming 192.168.0.1 for your NAS) 1
    192.168.0.1:/volume1/myfolder       /mnt/myfolder   nfs     defaults        0   0
    
  • mount /mnt/myfolder

References

Footnotes

  1. Mounting by meaning of the plain command, without editing /etc/fstab, did not work for me.