문제

Is it possible to trace which files are creating files in the /tmp folder on a linux OS? I want to back trace some files to find out where they have come from

올바른 솔루션이 없습니다

다른 팁

If the files are open you could find the processes with something like

ll -d /proc/[1-9]*/fd/* | grep /tmp/
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top