分类: IT职场
2013-11-13 17:56:12
NFS 挂载文件出错
mount.nfs: an incorrect mount option was specified
是这样挂载的:
mount -t nfs 192.168.30.162:/web_data/file /mnt -o proto=tcp -o noclok
解决方法是:
mount -t nfs -o nolock,nfsvers=3,vers=3 -o proto=tcp 192.168.30.162:/web_data/file /mnt