fanotify, built on top of fsnotify, is supposed to replace inotify which replaced dnotify. Are there some good programming examples or existing utilities that use fanotify to watch for changes in a filesystem? How much detail does fanotify provide?

link|improve this question

feedback

3 Answers

I just learned about fanotify and it seems very nice. Very nice interface!

It is not in the Linus tree yet but I guess it will get there for Linux 2.6.33 and before for testing (I noticed some patches today in LKML). In the original patch they announce a GIT tree thus you might be able to build a testing kernel from there. You might also find testing git trees.

I couldn't find utilities that use it but I guess they'll come soon.

There is an example here, at the end of the email:

http://lwn.net/Articles/339253/

If you are really interested in this new feature you might want to monitor the Linux Kernel Mailing List and interact there. You can also wait until the utilities are released or develop your own.

About the detail, it seems fanotify provides less events than inotify. I guess this might change in the future but since this is a brand new feature in development there is not much I can say about it now.

link|improve this answer
1  
In the end fanotify went into 2.6.36 – Douglas Leeder Sep 10 '10 at 8:18
feedback

If you get around to using fanotify, I'd appreciate contributing a Python bridge to watchdog which allows you to monitor file system events in a cross-platform manner.

Please see http://github.com/gorakhargosh/watchdog

There's also a tool called watchmedo that lets you monitor file system events from the shell.

Thank you. =)

link|improve this answer
feedback

Just for your information: Fanotify has a bug. multi-thread opening file hangs when fanotify is on

here is a patch. http://marc.info/?l=linux-kernel&m=131822913806350&w=2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.