Home

Create an NFS Server In Linux

NFS "allows a system to share directories and files with others over a network. By using NFS, users and programs can access files on remote systems almost as if they were local files".

Some Steps

  • update apt
sudo apt-get update
  • install the nfs-kernel-server
sudo apt-get install -y nfs-kernel-server
  • start the server
sudo systemctl start nfs-kernel-server.service
Tags: