NFS Network File Share
Server Site Configuration
First Make Directory
mkdir -p /NFS
chmod 777 /NFS
NFS Configuration File
/etc/exports
vim /etc/exports
/NFS *(rw,sync)

systemctl start nfs-server.service
systemctl stop firewalld
exportfs -v
exportfs -r

Check the NFS Directory on both Server and Client
showmount -e 192.168.43.173

Client Site Configuration
Add entry into fstab show server NFS directory auto mount on client on after boot
nano /etc/fstab

To Reload the Entry , which you modified in the fstab
mount -a
