$ sudo mount 192.168.1.4:/some-nfs-share /media/some-local-path mount.nfs: rpc.statd is not running but is required for remote locking. mount.nfs: Either use ‘-o nolock’ to keep locks local, or start statd. mount.nfs: an incorrect mount option was specified
Solution:
Enable the rpcbind and nfs services:
$ sudo update-rc.d rpcbind enable $ sudo update-rc.d nfs-common enable
Restart the rpcbind service:
$ sudo service rpcbind restart