The inotify tag has no wiki summary.
2
votes
0answers
70 views
Can I limit the number of inotify watches available to a process or cgroup?
I am consistently running out of inotify resources, leading to errors along the lines of:
# tail -f /some/files
tail: inotify resources exhausted
tail: inotify cannot be used, reverting to polling
...
1
vote
0answers
14 views
incrontab reports modifying a file that doesn't exists
I have created this incrontab entry:
/tmp IN_ALL_EVENTS /home/me/changes.sh $@/$# $%
and this script (changes.sh):
#!/bin/bash
echo "file $1 changed(flgs: $2)" >> /home/me/changes.log
...