1개 답변
- 최신
- 최다 투표
- 가장 많은 댓글
1
Hi dodov,
In Linux running over NFS, .nfs files are created when a file opened on a client is deleted from the file system while still opened. The client renames the file to a fairly long string like you're seeing in order to discourage other clients or processes from using the file.
Usually you can find out what process is causing using the lsof command, in this case:
lsof .nfs3bb62bc5d551a49f0000000c
This will output the process that is working with the file, and if necessary, you can then kill said process.
답변함 2년 전
관련 콘텐츠
- AWS 공식업데이트됨 일 년 전
- AWS 공식업데이트됨 일 년 전
So this is a Linux feature, rather than an EFS feature? What doesn't make sense to me is that in my case, files were never deleted (to my knowledge, at least). They were only read and written rapidly. Is there another reason why .nfs files could appear? Do you know of any documentation on the matter?