Question :
How to resolve the following mount error on Linux platforms ?
[root@instrhel6ppc ~]# mount -o nolock thor:/devinst /devinst
mount.nfs: Remote I/O error
[root@instrhel6ppc ~]#
Answer :
Add the options to mount as shown below and it will resolve the issue .
[root@instrhel6ppc ~]# mount -o vers=3 thor:/devinst /devinst
[root@instrhel6ppc ~]#