1. [root@rui ~]# uname -r  
  2. 2.6.18-194.el5  
  3. You have new mail in /var/spool/mail/root  
  4. [root@rui ~]# ll /proc/sys/fs/inotify/  
  5. total 0  
  6. -rw-r--r-- 1 root root 0 Oct 24 12:44 max_queued_events  
  7. -rw-r--r-- 1 root root 0 Oct 24 12:44 max_user_instances  
  8. -rw-r--r-- 1 root root 0 Oct 24 12:44 max_user_watches  
  9. [root@rui ~]#  
  10.  
  11. 1、下载  
  12. wget --no-check-certificate http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.14.tar.gz
  13.  
  14. 2、编译  
  15. tar zxf inotify-tools-3.14.tar.gz  
  16. cd inotify-tools-3.14  
  17. ./configure  
  18. make  
  19. make install  
  20. 3、一些小处理  
  21. 如果是32位系统  
  22. ln -s /usr/local/lib/libinotifytools.so.0 /usr/lib/libinotifytools.so.0  
  23. 如果是64位系统  
  24. ln -s /usr/local/lib/libinotifytools.so.0 /usr/lib64/libinotifytools.so.0  
  25.    
  26. 5、无论32或者64位系统都执行  
  27. [root@rui ~]#echo 104857600 > /proc/sys/fs/inotify/max_user_watches  
  28. [root@rui ~]#echo 'echo 104857600 > /proc/sys/fs/inotify/max_user_watches' >> /etc/rc.local   
  29. [root@rui ~]#echo '/usr/local/bin/inotifywait -mrq -o/var/log/change.log --timefmt '%F %T' --format ' %T %w%f %e' -e close_write -e create -e delete -e move -e attrib /www/web/ttc.com/public_html  
  30. >> /etc/rc.local