Launch NFS on Raspberrypi

Introduction NFS is very useful tool to mount volumes and share files. That is also used as a PersistentVolume of Kubernetes, so it is meaningfull that to know how to launch nfs server on your RaspberryPi on recent k3s movement. Install NFS If you use raspbian, you just execute a command. $ sudo apt-get install -y nfs-common nfs-server Please make directory to be mounted. $ sudo mkdir /mnt/share $ sudo chmod -R 777 /mnt/share Then, add setting to /etc/exports...

May 5, 2019 · 2 min · Me