Download and Install the Components
You need to install the necessary components on the host server.

# sudo apt-get update
# sudo apt-get install nfs-kernel-server


Create the Share Directory on the Host Server
# sudo mkdir /nfs-share
# sudo chown nobody:nogroup /nfs-share

Configure the NFS Exports on the Host Server
# sudo vi /etc/exports
/nfs-share 111.111.111.111(rw,sync,no_root_squash)

Start NFS Service
# sudo service nfs-kernel-server start

Leave a Reply

Your email address will not be published. Required fields are marked *