nfs mount fails in Ubuntu 10, but not with -v
Posted
by stuartreynolds
on Server Fault
See other posts from Server Fault
or by stuartreynolds
Published on 2010-06-09T22:55:49Z
Indexed on
2010/06/09
23:02 UTC
Read the original article
Hit count: 181
(1) mount -t nfs remotehost:/remotedir localmountpoint -o owner,rw
(2) mount -v -t nfs remotehost:/remotedir localmountpoint -o owner,rw
(1) Used to work with Ubuntu 9 and now fails with Ubuntu 10 (2.6.32-21-generic kernel) with the error:
mount.nfs: an incorrect mount option was specified
Strangely, adding -v (verbose) in (2) makes the problem go away.
This is currently a blocker for me because the fstab line:
remotehost:/remotedir localmountpoint nfs owner,rw 0 0
causes the same error (I don't believe I can specify verbose in fstab).
Is this a bug in mount or my options really incorrect?
© Server Fault or respective owner