Mount NFS share Ubuntu

To mount an NFS share in Ubuntu you need to install nfs-common:

sudo apt-get install nfs-common

Next, create the directory to which you would like to mount the share:

sudo mkdir -p /nfs/general

Finally, run the mount command replacing NFS_SERVER_IP with the IP of the NFS server:

sudo mount NFS_SERVER_IP:/var/nfs/general /nfs/general