NFS mount from SCO to Solaris

Hi,

I'm using Solaris 10 and OS/2 warp. There is a share on OS/2 warp which I'm trying to mount on Solaris. I get the following error message

[root@Solaris /]$mount -F nfs -o rw 10.5.170.16:D:\audio /AudioSCRAFT
nfs mount: 10.5.170.16:D:audio: no applicable versions of NFS supported

Any idea how I mount the share.

Thanks in advance

sure it is a NFS and not a samba share?

Its from OS/2 warp, I was told nfs share. I tried mounting it using autofs and it worked

mount -F autofs -o rw 10.5.170.16:D:\audio /AudioSCRAFT

However, it does not show any data in it. I guess permissions need to be set on OS/2

Filesystem             Size   Used  Available Capacity  Mounted on
10.5.170.16:D:audio      0K     0K         0K     0%    /AudioSCRAFT

Run showmount -e 10.5.170.16 on the solaris 10 client.

It should display NFS server export list (if any).

As Peasant says:

 
showmount <ip address>

will tell you what shares that ip address is offering

The OS/2 filesystem might be a PC filesystem in which case you'll need:

 
mount -F pcfs .......... 

on the mount command.

Also, the two nfs versions might be different so might need to specify on the command line:

 
mount -o vers=....................

NFS version might be 2,3 or 4.

Also, you could specify root access on the target:

 
mount -o rw,root...............

on the mount command line.

Some combination of the above ought to work.

Hi,

The output of showmount is as follows.

[root@Solaris2 /]$showmount -e 10.5.170.16
export list for 10.5.170.16:
d:\audio (everyone)

When I try and mount it via nfs following is the output

[root@Solaris2 /]$mount -F nfs -o rw  10.5.170.16:d:audio /AudioSCRAFT
nfs mount: 10.5.170.16:d:audio: no applicable versions of NFS supported

I'm able to mount it via autofs, however it does not show any contents in the filesystem

[root@Solaris2 /]$mount -F autofs -o rw  10.5.170.16:d:audio /AudioSCRAFT
[root@Solaris2 /]$cd /AudioSCRAFT
[root@Solaris2 /AudioSCRAFT]$df -h .
Filesystem             Size   Used  Available Capacity  Mounted on
10.5.170.16:d:audio      0K     0K         0K     0%    /AudioSCRAFT
[root@Solaris2 /AudioSCRAFT]$ls -lrt
total 0
[root@Solaris2 /AudioSCRAFT]$

The remote share is not empty and has data

---------- Post updated at 06:55 PM ---------- Previous update was at 04:52 PM ----------

Hi,

Thanks to all for your inputs. The issue is now resolved (after going through good old man page )

mount -F nfs -o vers=2,rw  10.5.170.16:d:\audio  /AudioSCRAFT