Can't upload when mounting NFS in Linux/Unix

The Knowledgebase provides a database of answers to many Technical questions.
Post Reply
FTP
Site Admin
Posts: 2072
Joined: Tue Sep 29, 2009 6:09 am

Can't upload when mounting NFS in Linux/Unix

Post by FTP »

Some NFS server doesn't support locking file, therefore you had to mount the NFS device with the 'nolock' option set.
The system fstab will like this:
YourNFS:/ftp /mnt/nfsftp nfs rw,intr,rsize=2048,wsize=2048,nolock 0 0

or you can use the "mount" command like this:
mount -o llock,rw,vers=3 YourNFS:/ftp /mnt/nfsftp
Post Reply