Mounting NFS Shares
How Do I Find Out Shared Directories?
$ showmount -e nas01
$ showmount -e nfs-server-ip-address-here
$ showmount -e nas01.lan.nixcraft.net.inMac OS X NFS mount Command
$ sudo mkdir /private/nfs$ sudo mount -t nfs 192.168.3.1:/mp3 /private/nfsTip: Operation not permitted Error
$ sudo mount -t nfs -o resvport 192.168.3.1:/mp3 /private/nfs$ sudo mount -t nfs -o resvport,rw 192.168.3.1:/mp3 /private/nfsLast updated