agedu – correlate disk usage with last-access times to identify large and disused data
首先要先作索引
agedu -s /etc
會在當下目錄產生 agedu.dat 檔 (就是用它來呈現用量的)
多個來源就???
像 du 一樣的呈現 (文字)
agedu -t /etc
也可以網頁方式呈現(listen一個port),它內鍵 web server,再搭配–auth 讓瀏覽網頁時需要輸入帳密 (不要密碼的話可以用 –auth none)
agedu -w --address 10.10.10.137:54321 --auth basic
(看樣子它顏色的地方是標示這些檔案目錄存在多久了?!)
agedu 對於檔案,則是用 files 字串呈現,不過可以加 –file 改善
另一個網頁呈現方式,產生一個 index.html
agedu -H /etc --file > index.html
agedu 無支援中文
ref : http://www.cyberciti.biz/hardware/linux-find-and-recover-wasted-disk-space/
留言