Friday, 3 October 2014

 OS X and NFS

So I was seeing: -

Operation not permitted

whilst trying to mount a NFS export from my Mac: -

sudo mount -t nfs 192.168.3.5:/macbak /tmp/foobar

Simple solution, thanks to Google: -


...
simply adding -o resvport to the mount_nfs command resolves the above error and successfully mounts the NFS share.
...

which leads me to this: -

sudo mount -t nfs -o resvport 192.168.3.5:/macbak /tmp/foobar

The original article also refers to this: -


PS For the record, I'm using OS X 10.9.5 Mavericks, but the solution remains the same, which is nice :-)

No comments:

Note to self - use kubectl to query images in a pod or deployment

In both cases, we use JSON ... For a deployment, we can do this: - kubectl get deployment foobar --namespace snafu --output jsonpath="{...