Set‐up an NFS server - toge510/homelab GitHub Wiki
Follow Network File System (NFS).
Configure the directories to be exported by adding the following line to the /etc/exports
.
/share 192.168.11.0/255.255.255.0(rw,no_subtree_check)
Apply the new config.
sudo exportfs -ra
Use the mount command to mount a shared NFS directory from homelab.
sudo mount 192.168.11.100:/share /share/
