Linux Mount Media Folder via NFS
NFS Mounting: How to Mount an NFS Share in Linux
sudo apt update
sudo apt install nfs-common -yInstalling NFS client on Ubuntu and Debian:
sudo nano /etc/fstabOpen the /etc/fstab file with your text editor
192.168.10.10:/mnt/user/media /media nfs defaults 0 0Add the following line to the file
sudo mount -t nfs 192.168.10.10:/mnt/user/media /mediaMount the folder for the first time