Go to the Sharing tab and click Advanced Sharing .
Check the box next to Share this folder .
Click Permissions and add the appropriate permissions readwrite for the users who will have access to the share.
Click OK to save the settings.
Start NFS services
Start the NFS client: Starting the nfsadmin client.
Start the NFS server: nfsadmin server startup.
Check the status of NFS services: nfsstat.
Open firewall ports if applicable
Open Control Panel and select System and Security > Windows Defender Firewall .
Click on Additional settings .
Create inbound rules for NFS ports usually TCPUDP 2049 .
Mount the NFS share on india telegram data the client
Open Command Prompt as administrator.
Create a mount point: mkdir Z:\nfs_share.
Mount the NFS share: mount \\<server_ip>\shared_directory Z:\nfs_share.
Check mounting: directory Z:\nfs_share.
macOS
Create a mount point
Open the Terminal application.
Create a directory to serve as the mount point: sudo mkdirVolumesnfs_share.
Edit etcauto_master
Open etcauto_master in a text editor with elevated privileges: sudo nano etcauto_master
Add a new line to the end of the file to enable NFS mounting. For example: - auto_nfs
Save and close the file.
Create etcauto_nfs
Create and open etcauto_nfs in a text editor: sudo nano etcauto_nfs.
Add NFS mount configuration. For example:
Volumesnfs_share -fstype=nfs,rw,nosuid 192.168.1.100:srvnfs
Replace 192.168.1.100:srvnfs with the IP address of your NFS server and share.
Save and close the file.