On Apr 18, 2006, at 2:28 PM, Mike Parker wrote:
I'm having problems with 32 bit linux clients mounting NFS on my
10.4.6 server. The problem is that they can mount the sharepoint,
however certain functions like readdir from within a program do not
work. The 64 bit clients seem fine. My guess is that suppling the
-32bitclients option may fix this, but I'm having trouble locating
the nfs config file to set this option. The server doesn't have a
/etc/exports file which the man page suggests is the location of the
file I need to modify.
I would appreciate it, if someone could simply point me to the nfs
config file on mac os x 10.4.6 server.
/etc/exports may be used as per the man page. In Panther it
invalidated anything in NetInfo, which is where exports are generally
stored.
heretic:~ mb$ nidump exports .
/Users/Shared -maproot=nobody -network=10.2.0.0 -mask=255.255.255.0
edit that output per /etc/exports .. niload it back.
Or edit the opts in netinfo directly.
heretic:~ mb$ nicl . -read /exports
name: exports
heretic:~ mb$ nicl . -list /exports
107 /Users/Shared
heretic:~ mb$ nicl . -read 107
name: /Users/Shared
opts: maproot=nobody network=10.2.0.0 mask=255.255.255.0
-mb