Talk:NFS Howto Interop
From Linux NFS
Solaris
I would have put ths in the article, but it's locked. If you get this error trying to mount from Linux 2.6 to Solaris 10:
nfs mount: mount: /mysolarismountpoint: Not owner
It's because NFSv4 support in Linux is broken. Force Solaris to use NFSv3 with either of these methods:
- Add this line to file /etc/default/nfs:
NFS_CLIENT_VERSMAX=3
- Use this NFS mount -o option (or /etc/vfstab option): vers=3
For example here's my /etc/vfstab entry:
server1:/netdrive - /netdrive nfs - no nosuid,rw,soft,rsize=4096,wsize=4096,vers=3
Danx 20:25, 16 November 2006 (PST)