2020-06-19
inotify - 維基百科,自由的百科全書
Linux核心 - 維基百科,自由的百科全書
inotify 說明
inotify-tools 官方網站
Linux Kernal 從 2.6.13 開始提供 inotify 機制,程式設計師可以使用它提供的 function,對文件變化進行監控。
於是有人開發了使用 inotify 機制的工具 inotify-tools,省去自行開發麻煩,可以直接使用的工具。
CentOS 8.1 安裝後,預設沒有 inotify-tools 可用,
inotify-tools 包含 inotifywait 和 inotifywatch,也都沒得用。
yum 安裝也沒也提供它。
所以必須手動下載 .tar.gz 安裝,或先安裝 epel-release 讓 yum 可以安裝。
套件下載
安裝步驟
檢查 kernel 版本
[root@localhost ~]# uname -r
4.18.0-193.el8.x86_64
確認是否支援
[root@localhost ~]# ls -lsart /proc/sys/fs/inotify
total 0
0 dr-xr-xr-x. 1 root root 0 Jun 19 13:33 ..
0 -rw-r--r--. 1 root root 0 Jun 19 13:33 max_user_watches
0 dr-xr-xr-x. 1 root root 0 Jun 19 13:33 .
0 -rw-r--r--. 1 root root 0 Jun 19 13:44 max_user_instances
0 -rw-r--r--. 1 root root 0 Jun 19 13:44 max_queued_events
[root@localhost ~]#
開始下載、編譯、安裝
[root@localhost ~]#wget http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.20.2.2.tar.gz
[root@localhost ~]# tar -zvxf inotify-tools-3.20.2.2.tar.gz
[root@localhost ~]# cd inotify-tools-3.20.2.2
[root@localhost inotify-tools-3.20.2.2]# yum -y install gcc make
[root@localhost inotify-tools-3.20.2.2]# ./configure --prefix=/usr/local/inotify
[root@localhost inotify-tools-3.20.2.2]# make
[root@localhost inotify-tools-3.20.2.2]# make install
編輯執行 shell script
[root@localhost ~]# vi /root/inotify.sh
內容如下 (架設目錄列表存放於 /root/watchdir ,輸出 log 在 /root/inotify.log (檔案名稱和路徑可以自己改)
/usr/local/inotify/bin/inotifywait -mrq -e modify,create,move,delete --fromfile '/root/watchdir' --timefmt '%y-%m-%d %H:%M' --format '%T %w%f %e' --outfile '/root/inotify.log' &
編輯要監控的目錄列表 (名稱要和上面對應)
[root@localhost ~]# vi /root/watchdir
內容 (依照自己需求改)
/var/www/html
設定為可執行,然後執行
[root@localhost ~]# chmod 755 inotify.sh
[root@localhost ~]# ./inotify.sh
測試:建立個新檔案看看
[root@localhost ~]# touch /var/www/html/new.txt
[root@localhost ~]# cat inotify.log
20-06-19 13:51 /var/www/html/new.txt CREATE
[root@localhost ~]#
inotifywait 相關說明如下:
inotifywatch 相關說明如下:
(完)
|
inotifywatch 相關說明如下:
|
(完)
相關
FileSystemWatcher 類別 (這裡有程式範例)
Java's WatchDir example - Oracle Docs (這裡有程式範例)
[研究] inotify-tools 免費目錄即時監控工具試用 (CentOS 8.2)
[研究] Microsoft FileMon / Process Monitor v3.53 免費目錄即時監控軟體-試用
[研究] FolderChangesView 2.3.1 免費目錄即時監控軟體-試用
[研究] Directory Monitor 2.13.5.0 (27 May 2020) 免費目錄即時監控軟體-試用
沒有留言:
張貼留言