# Install nfs server sudo apt update sudo apt install nfs-kernel-server # Create share directory sudo mkdir -p /srv/nfs/share sudo chown -R nobody:nogroup /srv/nfs/share sudo chmod 777 /srv/nfs/share # Edit exports file sudo nano /etc/exports /srv/nfs/share client-ip-or-subnet(rw,sync,no_subtree_check,no_root_squash) # Restart the server sudo exportfs -ra sudo systemctl restart nfs-kernel-server # List exports showmount -e # Expected output: Export list for : /srv/nfs/share 192.168.1.0/24