Step 1.
Make sure that you have correctly setup the NFS mapping on the NAS. The information you enter is found on the mapping machine. This is an example:
Remote UUID: 0
Remote IP: 192.168.1.50/24
Mapping User: root
You must make sure the remote UUID and mapping user match on the Linux/Unix machine. If you are on a 255.255.255.0 subnet, the “24” is the number entered after the <remote IP>/.
You must also make sure you have created the mapping user on the NAS and assigned that user rights to the folder you want mounted on the Linux/Unix machine.
Step 2.
While logged on as the mapping user on the Linux/Unix machine, type the following command to mount the NAS (you may use other mounting options, but this is the typical mount command):
mount –t nfs 192.168.1.50:/SharedFolderName LocalFolderName
If you receive no error message, you can type in “mount” to check the mounts you have on the machine.
If you receive an error message about “wrong fs type,” try the following command:
mount –o vers=2 192.168.1.50:/SharedFolderName LocalFolderName
The above command option “vers=2” should force the mount to use NFSv2. Note that some mount commands may differ, so if the aboce command does not work, do a help on the mount command to find the proper command.
Step 3.
If you still receive the above error, try the following command to disable locking on the NFS mount:
mount –o nolock 192.168.1.50:/SharedFolderName LocalFolderName
Note that some mount commands may differ, so if the aboce command does not work, do a help on the mount command to find the proper command.