the "df" images... I normally would mount -o soft -t nfs blah &
and then wait... wait... and wait... :-/
so, now... -o soft,nolock .. thanks!
Scott
-o soft ?
It's far better to use -o hard,intr.
From the man page for the mount command:
hard The program accessing a file on a NFS mounted file
system will hang when the server crashes. The pro╜
cess cannot be interrupted or killed unless you
also specify intr. When the NFS server is back
online the program will continue undisturbed from
where it was. This is probably what you want.
soft This option allows the kernel to time out if the
nfs server is not responding for some time. The
time can be specified with timeo=time. This option
might be useful if your nfs server sometimes
doesn't respond or will be rebooted while some pro╜
cess tries to get a file from the server. Usually
it just causes lots of trouble.