I have a NFS share on my OMV server which I can mount on my ZorinOS-laptop via terminal. I would like to add this mount as soon as the laptop starts. I understand that the way to achieve this, is to add the share to the fstab-file on my laptop. I tried this but it won't mount.
The terminal command:
sudo mount -t nfs server.ip.number/Data /home/wouter/mnt/nfs
The lines I added to my fstab:
NFS_SERVER:/PATH/TO/EXPORTED/DIR /MOUNT_POINT_ON_CLIENT TYPE_OF_FS OPTIONS DUMP PASS
server.ip.number:/Data /mnt/nfs nfs auto,nfsvers=4,timeo=30,retrans=5,intr,tcp 0 0
What am I missing here?