Step 1 — Downloading and Installing the Components
On the client server, you need to install a package called nfs-common, which provides NFS functionality without including any server components. Again, refresh the local package index prior to installation to ensure that you have up-to-date information:
sudo apt update
sudo apt install nfs-common
Step 2 — Creating Mount Points and Mounting Directories on the Client
In order to make the remote shares available on the client, you need to mount the directories on the host that you want to share to empty directories on the client.
sudo mkdir -p /nfs/home
sudo mount host_ip:/home /nfs/home