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