DENX . DULG . MountingAFilesystemOverNFSHangsForever |
SELF
ramdisk image that comes with the ELDK.
When we try to mount a filesystem over NFS from the server, for example:
# mount -t nfs 192.168.1.1:/target/home /home
/sbin/portmap
) to the target filesystem
and start it as part of the init scripts.
"mount"
program and the kernel that you don't
need file locking by passing the "nolock"
option
to the mount call, i. e. use
# mount -o nolock -t nfs 192.168.1.1:/target/home /home
"nolock"
option) an RPC call to the "portmap"
deamon will be attempted
which is required to start a lockd kernel thread which is necessary if
you want to use file locking on the NFS filesystem. This call will fail
only after a very long timeout.
----- Revision r1.2 - 16 Aug 2004 - 19:20 - RobDay
|