The next command works:
sudo mount -t nfs4 10.10.1.10:/Data /mnt/data
How do I reformat this to /etc/fstab to add in? I can't get it mounting on boot.
The next command works:
sudo mount -t nfs4 10.10.1.10:/Data /mnt/data
How do I reformat this to /etc/fstab to add in? I can't get it mounting on boot.
You need to add the following string:
10.10.1.10:/Data /mnt/data nfs vers=4,_netdev 0 0
Mount options description:
vers=4 - uses version 4 of NFS protocol.
_netdev - mount after network initializing.