Synology, NFS, and OS X
I bought a Synology diskstation for a home backup/fileserver, and overall it’s been ok if not great. The big problem I had was I could not figure out how to get an NFS filesystem mounted on my machine. It turns out the ‘-P’ option was the trick. Here’s the final command that worked for me (with a ‘homes’ volume, mounted at ‘/Volumes/homes’):
sudo mount -o proto=tcp,-P,port=2049 192.168.0.6:/volume1/homes/ /Volumes/test
Note that you can add this to Disk Utility for automounting; you just need to add the ‘-P’ as an Advanced option.