To get my stuff sorted i had to connect Linux NFS share, and as i never did it its nice to have an entry of how to just in case. If you use it too. Then comment below 🙂 

Installing packages ( Ubuntu / Debian)

sudo apt update
sudo apt install nfs-common

Now you need to setup NFS share. I’m going to setup one without authentication to make things a bit easier.

Lets try to mount manualy first to check if everything works

mkdir /mnt/remote_backup
sudo mount -t nfs 192.168.XXX.XXX:/mnt/Backup-5TB-001/Imich-Backup /mnt/remote_backup

If this succeeded then we can go further with automatic mount.

Set up an automatic mount with system boot.

nano /etc/fstab

#Add this entry at the end of the file
192.168.XXX.XXX:/mnt/Backup-5TB-001/Imich-Backup /mnt/remote_backup nfs rsize=8192,wsize=8192,timeo=14,_netdev 0 0
#Save 

mount /mnt/remote_backup ( this should work )
sudo systemctl daemon-reload

Now every boot your share is automatically mounted in place.