This is a quick one-liner to remind you how to mount an NFS share on a MACOS client.
sudo mount -t nfs -o resvport 172.20.10.2:/share/this /mnt/nfs
A few points to remember:
- You need to do this as root (or SUDO).
- You need to include the “-o resvport” option.
- Obviously make the mount-point directory before trying to mount it.