All HowTo's

Mounting An NFS Share On MACOS

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:

  1. You need to do this as root (or SUDO).
  2. You need to include the “-o resvport” option.
  3. Obviously make the mount-point directory before trying to mount it.

Leave a Reply

Your email address will not be published. Required fields are marked *