how to find which process had created any file in Linux

9,171

Solution 1

If you don't have any process that monitors these changes/creations than you have no way to know which process actually created a file or did anything.

This link may help you start with files auditing : Linux audit files to see who made changes to a file

In case you are a programmer you may be interested in "Monitor Linux file system events with inotify"

Solution 2

No. You can only monitor future file creation by using the auditing subsystem.

Share:
9,171
P7oKhom
Author by

P7oKhom

Updated on September 18, 2022

Comments

  • P7oKhom
    P7oKhom over 1 year

    Is there any way to know which process had created any file in Linux Red Hat/CentOS 5?

  • user1686
    user1686 about 13 years
    inotify doesn't give the process ID; you would need to use fanotify for that.