如何優雅地刪除 Linux 中的垃圾檔案
不知道大家是否也跟我一樣,是一隻要把的自己電腦檔案安排的條理有序,把沒用的檔案會及時刪掉的程式猿呢?如果是的話,那麼我們可以愉快地探討下文章的內容。如果不是的話,你也可以留下來湊湊熱鬧嘛。 |
下面要介紹的是今天的主角—— tmpwatch ,它能幫助我們遞迴刪除在給定時間內沒有訪問的檔案和空目錄。
當然,我們也可以使用 find 查詢並刪除超過 x 天未訪問的檔案,不過 tmpwatch 可以一步到位,何樂而不為?
tmpwatch 預設根據檔案或目錄的訪問時間(access time)來決定刪除哪些檔案或目錄。除此之外,你還可以根據 inode 改變時間(inode change time)、修改時間(modification time)來進行操作。
通常,tmpwatch 用於刪除 /tmp 目錄下的檔案,以及其它地方其他無用的檔案,如舊的日誌檔案。
不要在 /(根目錄)中執行 tmpwatch!
不要在 /(根目錄)中執行 tmpwatch!!
不要在 /(根目錄)中執行 tmpwatch!!!(三遍警告! ^ - ^ )
/ 目錄包含 系統執行所必需的重要檔案,而tmpwatch 並沒有內建保護機制防止在/ 目錄上執行,一旦那些重要的檔案被刪除了,後果不堪設想!所以,小夥伴們在使用這個 的時候一定要慎重!
大多數 Linux 發行版的預設儲存庫中都提供 tmpwatch 的安裝:
在 Fedora 上:
$ sudo dnf install tmpwatch
在 上:
$ sudo yum install tmpwatch
在 openSUSE 上:
$ sudo zypper install tmpwatch
在 Debian 及其衍生版本(如 Ubuntu )上,tmpwatch 又叫 tmpreaper:
$ sudo apt install tmpreaper
tmpwatch 和 tmpreaper 的用法幾乎相同,可以認為二者是一樣的命令。為了便於描述,本文以tmpwatch 為例進行講解,使用基於 Debian 系統的朋友可以將下面的 tmpwatch 改為 tmpreaper。
例:刪除 /var/log/ 資料夾中超過 10 天未訪問的所有檔案和空目錄
tmpwatch 10d /var/log/
前文提到, tmpwatch 預設根據訪問時間來刪除檔案的,現在我們使用 -m 選項來根據檔案的修改時間(modification time)來刪除檔案。
例:刪除 /var/log/ 資料夾中超過 10 天未修改的檔案
tmpwatch -m 10d /var/log/
上面兩個命令中的 d 是時間引數,具體如下:
d - 天數
h - 小時
m - 分鐘
s - 秒數
預設時間引數是小時 。假如想刪除過去 10 個小時未修改的檔案,可以寫成下面這種形式:
tmpwatch -m 10 /var/log/
可以使用 -s 選項刪除符號連結:
tmpwatch -s 10 /var/log/
tmpwatch 不僅僅可以刪普通檔案,還可以刪除一些特殊檔案,比如符號連結、目錄、管道檔案等等。這個情況下,需要使用 -a 選項:
tmpwatch -s 10 /var/log/
如果不想刪除某個目錄,可以使用 --nodirs 選項,在刪除時排除對該目錄的刪除:
tmpwatch -am 10 --nodirs /var/log/
這裡要再次強調,在對重要目錄進行檔案刪除時,不要急著使用 tmpwatch 命令!不妨先看看命令執行之後刪除的檔案有哪些,不然刪錯了腦殼又疼了。。(養成一種好習慣!)
可以使用 -t 進入測試模式:
tmpwatch -t 30 /var/log/
CentOS 7 下輸出:
removing file /var/log/wtmp removing directory /var/log/ppp if empty removing directory /var/log/tuned if empty removing directory /var/log/anaconda if empty removing file /var/log/dmesg.old removing file /var/log/boot.log removing file /var/log/dnf.librepo.log
基於 Debian 的系統下輸出:
$ tmpreaper -t 30 /var/log/ (PID 1803) Pretending to clean up directory `/var/log/'. (PID 1804) Pretending to clean up directory `apache2'. Pretending to remove file `apache2/error.log'. Pretending to remove file `apache2/access.log'. Pretending to remove file `apache2/other_vhosts_access.log'. (PID 1804) Back from recursing down `apache2'. (PID 1804) Pretending to clean up directory `dbconfig-common'. Pretending to remove file `dbconfig-common/dbc.log'. (PID 1804) Back from recursing down `dbconfig-common'. (PID 1804) Pretending to clean up directory `dist-upgrade'. (PID 1804) Back from recursing down `dist-upgrade'. (PID 1804) Pretending to clean up directory `lxd'. (PID 1804) Back from recursing down `lxd'. Pretending to remove file `/var/log//cloud-init.log'. (PID 1804) Pretending to clean up directory `landscape'. Pretending to remove file `landscape/sysinfo.log'. (PID 1804) Back from recursing down `landscape'. [...]
上面這個過程,其實並沒有真正刪除檔案,只是進行模擬刪除,告知你哪些檔案會被刪除。
在確保要刪除的檔案都是正確的時候,方可去掉 -t 選項再執行 tmpwatch 進行真正刪除。
tmpwatch 預設不會刪除當前使用者沒有寫訪問權的檔案。但是如果你必須要刪除那些檔案,可以使用-f 選項進行強制刪除:
tmpwatch -f 10h /var/log/
若想在刪除時保留指定的檔案,也就是說列入白名單,可以使用 --protect 選項。假設我們要保留所有 txt 型別的檔案:
tmpreaper --protect '*.txt' -t 10h /var/log/
輸出結果:
(PID 2623) Pretending to clean up directory `/var/log/'. (PID 2624) Pretending to clean up directory `apache2'. Pretending to remove file `apache2/error.log'. Pretending to remove file `apache2/access.log'. Pretending to remove file `apache2/other_vhosts_access.log'. (PID 2624) Back from recursing down `apache2'. (PID 2624) Pretending to clean up directory `dbconfig-common'. Pretending to remove file `dbconfig-common/dbc.log'. (PID 2624) Back from recursing down `dbconfig-common'. (PID 2624) Pretending to clean up directory `dist-upgrade'. (PID 2624) Back from recursing down `dist-upgrade'. Pretending to remove empty directory `dist-upgrade'. Entry matching `--protect' pattern skipped. `ostechnix.txt' (PID 2624) Pretending to clean up directory `lxd'.
(偷偷地告訴你,tmpwatch/tmpreaper 與 cron job 一起食用更佳哦。)
進入 cron job 任務編輯視窗:
# crontab -e
新增一個週期任務:
0 1 * * * /usr/sbin/tmpwatch 30d /var/log/
上面的程式碼設定了 tmpwatch 每天凌晨 1 點執行,並刪除 30 天之前的檔案。
不瞭解 corn job 的小夥伴可以上網搜下它的初學者指南哈。
安裝 tmpreaper 時,它會自動建立一個日常 cron job(/etc/cron.daily/Tmpreaper)。它從 /etc/timereaper.conf 檔案中讀取配置並執行。預設設定的是刪除 7 天以前的檔案,你可以透過修改 TMPREAPER.conf 檔案中 “TMPREAPER_TIME=7d” 來更改這項設定。
最後在提醒一下,在刪除檔案的時候一定要仔細檢查好路徑,以免資料丟失。
tmpwatch 和 tmpreaper 手冊頁:
$ man tmpwatch $ man tmpreaper
原文地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2684660/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MongoDB中如何優雅地刪除大量資料MongoDB
- 在 Linux 中如何刪除檔案中的空行Linux
- MySQL如何優雅的刪除大表MySql
- 如何永久刪除Mac中的檔案?Mac
- 在Linux中,如何建立、刪除和修改檔案?Linux
- 如何優雅地使用 VIM 檔案管理外掛 NERDTree
- 在Linux系統中如何刪除一個檔案?Linux
- Linux中如何刪除檔案?注意事項有哪些?Linux
- 如何優雅地使用幫助類檔案 helpers.phpPHP
- Linux如何快速刪除大量碎小檔案?Linux
- Linux中如何設定檔案只能追加而不能刪除Linux
- 在Java中如何優雅地判空Java
- 如何優雅地改善程式中for迴圈
- Linux下批量刪除空檔案或者刪除指定大小的檔案Linux
- 如何巧妙 / 優雅地使用幫助類檔案 helpers.phpPHP
- 優雅地除錯線上程式碼除錯
- Linux刪除檔案命令Linux
- Linux批量刪除檔案Linux
- 批量刪除檔案中的^M
- 刪除Repository中的檔案
- 刪除檔案中的數字
- 如何優雅地使用 macOSMac
- 如何優雅地使用 GitGit
- 如何在 Vue 中優雅地使用 CSS Modules?VueCSS
- Linux下刪除昨天的檔案Linux
- linux的刪除檔案命令和強制刪除命令Linux
- u盤裡的檔案無法刪除 如何刪除u盤裡刪不掉的檔案
- 如何優雅地提取 App 的素材APP
- linux 模糊批量刪除檔案Linux
- 如何優雅地在React專案中使用ReduxReactRedux
- 如何刪除win10更新檔案_win10刪除更新檔案的方法Win10
- 檔案的刪除
- 在Linux中,有一個檔案,如何刪除包含“www“字樣的字元?Linux字元
- linux下rm命令刪除檔名中包含特殊字元的檔案Linux字元
- Git | 如何優♂雅地管理版本Git
- 如何優雅地黑C++?C++
- Linux中對檔案刪除函式unlink的操作Linux函式
- 如何優雅地恢復執行中的容器應用