I have mounted a cifs file on two Linux machines. I have a Perl script which can modify the shared file. How do we lock the file over network in this scenario?
|
|
|||
|
|
|
If your file server is Samba, then look also at the smb.conf man page:
blocking locks (S)
locking (S)
|
||
|
|
|
|
If you're trying to do this over NFS, try File::NFSLock. |
||
|
|
|
|
Looks like we can fcntl() for locking files. I just found its working :) this link might be useful http://www.cpan.org/scripts/file-handling/flock.using.fcntl.example Thanks for your response _Anandan |
||||||
|
|
|
I couldn't find a module on CPAN to achieve this. It seems that the modules wrapping libsmbclient do not implement the OPLOCKing portion of the protocol. In the smbfs sources, the function |
||
|
|
