https://www.youtube.com/watch?v=l5n62HgSQF8
https://glmdev.medium.com/building-a-raspberry-pi-cluster-784f0df9afbd
To mount th
sudo mkdir /clusterfs
sudo chowwn nobody.nogroup -R /clusterfs
Edit the fstab to mount the drive on boot.
sudo vi /etc/fstab
mount /dev/sda1 /clusterfs
EXPORT THE NFS SHARE
sudo apt install nfs-kernel-server -y
sudo exportfs -a
FOR EACH NODE ON THE CLUSTER
Install the nfs client
sudo apt install nfs-common -y
sudo mkdir /clusterfs
sudo chown nobody.nogroup /clusterfs
edit the /etc/fstab
master