when mount nfs from target board
# mount -t nfs 192.168.1.2:/home/xxx/nfs /tmp/mnt
system will complain
rpcbind: server localhost not responding, timed out
xxx
the reason is no portmapper running on target
use this:
# mount -t nfs -o nolock 192.168.1.2:/home/xxx/nfs /tmp/mnt
OK!
# mount -t nfs 192.168.1.2:/home/xxx/nfs /tmp/mnt
system will complain
rpcbind: server localhost not responding, timed out
xxx
the reason is no portmapper running on target
use this:
# mount -t nfs -o nolock 192.168.1.2:/home/xxx/nfs /tmp/mnt
OK!