Tagged Questions

inotify is a Linux kernel subsystem that informs processes when files are accessed/created/modified or deleted.

learn more… | top users | synonyms

46
votes
4answers
19k views

Retrieving python module path

I want to detect whether module has changed. Now, using inotify is simple, you just need to know the directory you want to get notifications from. How do I retrieve a module's path in python?
11
votes
4answers
3k views

Is there anything like inotify on Windows?

I like the inotify subsystem in Linux. However, I'm mainly a Windows user, so I was wondering if there's anything similar?
10
votes
2answers
107 views

how to monitor a complete directory tree for changes in Linux?

How can I monitor a whole directory tree for changes in Linux (ext3 file system)? Currently the directory contains about half a million files in about 3,000 subdirectories, organized in three ...
6
votes
4answers
219 views

Is there a build tool based on inotify-like mechanism

In relatively big projects which are using plain old make, even building the project when nothing has changed takes a few tens of seconds. Especially with many executions of make -C, which have the ...
6
votes
3answers
2k views

Is there a command like “watch” or “inotifywait” on the Mac?

I want to watch a folder on my Mac (Snow Leopard) and then execute a script (giving it the filename of what was just moved into a folder (as a parameter... x.sh "filename")). I have a script all ...
5
votes
2answers
141 views

Best way to monitor file system changes in linux

I'm looking at building a file system sync utility that monitors file system activity, but it appears that some of the file system monitoring features in the linux kernel are obsolete or not fully ...
5
votes
1answer
62 views

how to automatically delete created file in linux with inotify?

I am trying to delete a created file with inotify but it doesn't work: inotifywait -r --format '%w%f' -e create /test && rm $FILE when i create a file in /test I get this: ...
5
votes
1answer
115 views

How can one monitor what part of big file changed

Is there solution for Linux kernel-3.0 (or later) that allows one to get notifications similar to inotify describing particular segment of file that was changed? There was fschange patch for up to ...
5
votes
1answer
2k views

inotify with NFS

I've recently created a dropbox system using inotify, watching for files created in a particular directory. The directory I'm watching is mounted from an NFS server, and inotify is behaving ...
5
votes
3answers
3k views

How do I program for Linux's new `fanotify` file system monitoring feature?

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 ...
4
votes
2answers
327 views

inotify - how to find out which user has modified file?

I'm looking for guidance on how to find out which user has modified a particular file. While inotify is great to get notification when a particular file is touched, how do I figure out which user has ...
4
votes
4answers
152 views

How to detect that no one is writing to a file in Linux?

I am wondering, is there a simple way to tell whether another entity has a certain file open for writing? I don't have time to use iNotify continuously to wait for any current writer to finish ...
4
votes
3answers
329 views

Is there a way to watch a mysql database for changes using perl?

I'm looking for a solution similar to the inotify method of watching files for changes. I'm aware that I could watch the binlog file of the mysql database and run queries to pick out the new results ...
4
votes
4answers
363 views

linux, inotify - how to subscribe?

Can you please explain me the inotify mechanism? I’ve searched in the web about it, but what I understood is that if I want to see the changes in a file I have to do polling with the “read” function. ...
4
votes
4answers
334 views

In Linux, how do I run a shell script when a file or directory changes

I want to run a shell script when a specific file or directory changes. How can I easily do that?
4
votes
4answers
219 views

how to make sure not to read a file before finishing the write to it

When trying to monitor a directory using inotify on Linux, as we know, we get notified as soon as the file gets created (before the other process finish writing to it) Is there an effective way to ...
3
votes
0answers
107 views

Why is inotify losing events?

I need to process large (~100s) of syslog messages using Perl and Linux::Inotify2. I wrote a test script which generates log messages continuously. To process events, my Perl script looks like this- ...
3
votes
1answer
198 views

flask “hello world” can not run in debug model

I followed official document, installed virtualenv and flask, and then python hello.py But there is something wrong: * Running on http://127.0.0.1:5000/ * Restarting with reloader: inotify events ...
3
votes
1answer
182 views

Catch moment when we have wifi connection

I need to write program which follow such steps: Start program (daemon) Wait (sleep, block) until I have wifi connection up Send/get some data from server Wait until wifi connection goes down goto 2 ...
3
votes
1answer
340 views

inotify C headers

So I'm trying to write a C program that uses inotify. I've used pyinotify before so I understand how it works. However, I'm following some guide and it tells me to include <linux/inotify.h>. The ...
3
votes
3answers
668 views

using stat to detect whether a file exists (slow?)

I'm using code like the following to check whether a file has been created before continuing, thing is the file is showing up in the file browser much before it is being detected by stat... is there a ...
3
votes
1answer
157 views

linux inotify - determine users for the triggered events

I am trying to figure out how to determine the user which triggered a specific event when monitoring some files with inotify. Is that even possible? Does the inotify_event structure has something like ...
3
votes
1answer
2k views

python automate ffmpeg conversion from upload directory

I have a upload script done. But i need to figure out how to make a script that I can run as a daemon in python to handle the conversion part and moving the file thats converted to its final resting ...
3
votes
2answers
406 views

pyinotify.ThreadedNotifier, process_* not called

I have a problem with pyinotify: the methods process_*() of the ProcessEvent are not called The code import sys, time, syslog from pyinotify import WatchManager, Notifier, ThreadedNotifier, ...
2
votes
3answers
74 views

Why doesn't inotify update?

I'm writing an inotify watcher in C for a Minecraft server. Basically, it watches server.log, gets the latest line, parses it, and if it matches a regex; performs some actions. The program works fine ...
2
votes
1answer
83 views

Does inotify work in the face of poorly synchronized clocks?

Here's the scenario: A central machine running Linux is a "data store" for a number of instruments. The instruments each have a PC, and each one has a remote mount (SMB) on the data store to which ...
2
votes
1answer
133 views

Suspected thread issue with pyinotify

I have been working with pyinotify and I am having issues with it where after multiple changes to a folder it simply stops receiving notifications. I have a feeling it is something to do with the the ...
2
votes
1answer
161 views

Can iNotify tell me where a monitored file is moved?

I want to monitor a file while it's moving in the system. Can iNotify tell me its new position whenever it's moves?
2
votes
1answer
226 views

Perl Linux::Inotify2 - can't respond to events anymore

I am getting some really weird behavior when using Linux::Inotify2 module for watching a directory for any newly created files. I had made a test script to see how it worked, and once that was done, ...
2
votes
1answer
578 views

Why isn't Pyinotify able to watch a dir?

I would like Pyinotify to watch a templates directory, which has subfolders, but I'm getting this error: DIRECTORY /home/project/templates [Pyinotify ERROR] add_watch: cannot watch ...
2
votes
1answer
424 views

Dropbox and pyinotify

I just got an iPad and I foolishly got the TexTouch application. Foolishly, because due to Apple regulation, TexTouch can't compile Tex. It syncs the .tex file to a computer using Dropbox. On the ...
2
votes
2answers
639 views

Can any linux API or tool watch for any change in any folder below e.g. /SharedRoot or do I have to setup e.g. inotify for each folder?

I have a folder with ~10 000 subfolders. Can any linux API or tool watch for any change in any folder below e.g. /SharedRoot or do I have to setup inotify for each folder? (i.e. I loose if I want to ...
2
votes
3answers
2k views

Dropbox like service with git — no with rsync and inotify

Do you have any advice as how to setup a Dropbox like service using git? Do you think git is the right tool for this? I was thinking about using a git + rush solution what do you think about it?
2
votes
1answer
181 views

Writing .Ts file 'on demand' (inotify ?…)

I have a mediaplayer that can only read samba shared files. I would like to play http stream (from my dreambox for instance). My idea is to share a folder on my linux. In this share, I will put a ...
2
votes
3answers
2k views

C program using inotify to monitor multiple directories along with sub-directories?

I have program which monitors a directory (/test) and notify me. I want to improve this to monitor another directory (say /opt). And also how to monitor it's subdirectories , current i'll get notified ...
2
votes
1answer
196 views

Do any POSIX functions or glibc extensions implement a breadth-first file tree walk?

I am writing a daemon that utilizes inotify to monitor file access and it is critical that I don't miss anything on a recursive search. I found this interesting idea and have begun to implement it. ...
2
votes
2answers
878 views

How could I detect when a directory is mounted with inotify?

I'm using Linux Inotify to detect FS events on my program. How could I be notified when a device is mounted on a monitored directory?
2
votes
2answers
314 views

Which process was responsible for an event signalled by inotify?

I am using pyinotify to detect access, changes, etc. on files in a given directory. Is there an easier way to find out which process was responsible for that - without having to patch inotify?
1
vote
1answer
11 views

inotifytools bugs

I'm using inotifytools to monitor a directory recursively. when I use the following command inotifywait ./test -m after the command, if I create a director under ./test, assuming ...
1
vote
1answer
43 views

python pyinotify event from externally created file

I have a pyinotify instance watching a mounted network drive (mounted with CIFS) for IN_WRITE_CLOSE events which picks up the system created events (sudo cp, sudo mv, etc.) flawlessly if the server ...
1
vote
1answer
43 views

questions about implementing pyinotify instance to monitor directory

I have some basic questions about pyinotify that I can't seem to find the answers to elsewhere. 1) For a continuous directory monitor (and event processor) is it necessary to have a while( True ) ...
1
vote
2answers
93 views

Automatically detecting file changes and synchronizing via S3

I have a local directory of media files on a Linux system, which I synchronise with an Amazon S3 account using an s3sync script. Currently, I'm manually running the s3sync script when I know the media ...
1
vote
1answer
46 views

inotify fails to react on IN_DELETE

I have the following (crude) function, which continually watches a directory for new files and files being deleted, recording such changes. It correctly records all new files and directories, but ...
1
vote
1answer
70 views

Can a single perl script running in background hold multiple instances of Log4Perl?

I have a script "server.pl" which is running in background and which is self-logging using Log4Perl. This script continuously reads in a directory and detects new files created in it with ...
1
vote
1answer
120 views

inotifywait - exclude regex pattern formatting

I am trying to use inotifywait to watch all .js files under my ~/js directory; how do I format my regex inside the following command? $ inotifywait -m -r --exclude [REGEX HERE] ~/js The regex - ...
1
vote
2answers
165 views

php how to properly use inotify instances for dir monitoring

Ok, I'm in need of a dir monitor that continually scans a dir for new .txt files added. Opens the .txt file, reads/parses the content and writes data to a mysql table. I'm looking into inotify which ...
1
vote
2answers
242 views

Why won't Middleman include the rb-inotify and therubyracer gems once installed?

I have: $ ruby -v ruby 1.9.2p290 (2011-07-09 revision 32553) [i686-linux] $ middleman version Middleman 2.0.13.1 $ cat /etc/debian_version 6.0.3 if I start a project like so: $ middleman init np ...
1
vote
3answers
315 views

inotify and bash

I am trying to make a bash script with inotiy-tools that will monitor a directory and alter all new files by removing lines containing "EE". Once altered it will move the files to another directory ...
1
vote
1answer
83 views

How do I avoid this race condition with readdir/inotify?

Suppose I want to invoke some command on all files in a directory and set a watch to invoke that command on all files that get created in that directory. If I do: while( ( sdi = readdir( d )) != ...
1
vote
0answers
137 views

notifier on linux filesystem for samba share

I am using pyinotify to monitor file events on my Ubuntu machine. I am sharing a folder through Samba, /sambashare. Unfortunately when I am on my Mac and drag and drop files into the Samba share drive ...

1 2 3