Set‐up an NFS server - toge510/homelab GitHub Wiki

Follow Network File System (NFS).

NFS server

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

NFS client (homelab)

Use the mount command to mount a shared NFS directory from homelab.

sudo mount 192.168.11.100:/share /share/
⚠️ **GitHub.com Fallback** ⚠️