NFS volume mount
1) Install package to enable NFS support on the client system:
sudo apt install nfs-common
2) Create a directory to which the NFS volume will be mounted:
mkdir /data
3) Update /etc/fstab:
sudo vim /etc/fstab
<ip>:/<volume> /data nfs rw,vers=3,rsize=65535,wsize=65535,hard,proto=tcp,timeo=600,nolock,retrans=2,sec=sys
4) Mount the volume:
sudo mount -a
5) Verify the mount:
df -h