如何優雅地刪除 Linux 中的垃圾檔案

安全劍客發表於2020-04-06
不知道大家是否也跟我一樣,是一隻要把的自己電腦檔案安排的條理有序,把沒用的檔案會及時刪掉的程式猿呢?如果是的話,那麼我們可以愉快地探討下文章的內容。如果不是的話,你也可以留下來湊湊熱鬧嘛。

下面要介紹的是今天的主角—— tmpwatch ,它能幫助我們遞迴刪除在給定時間內沒有訪問的檔案和空目錄。

當然,我們也可以使用 find  查詢並刪除超過 x 天未訪問的檔案,不過 tmpwatch 可以一步到位,何樂而不為?

tmpwatch 預設根據檔案或目錄的訪問時間(access time)來決定刪除哪些檔案或目錄。除此之外,你還可以根據 inode 改變時間(inode change time)、修改時間(modification time)來進行操作。

通常,tmpwatch 用於刪除 /tmp 目錄下的檔案,以及其它地方其他無用的檔案,如舊的日誌檔案。

重要警告!!

不要在 /(根目錄)中執行 tmpwatch!

不要在 /(根目錄)中執行 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 和 tmpreaper 的用法幾乎相同,可以認為二者是一樣的命令。為了便於描述,本文以tmpwatch 為例進行講解,使用基於 Debian 系統的朋友可以將下面的 tmpwatch 改為 tmpreaper。

1. 刪除超過 X 天未訪問的檔案

例:刪除 /var/log/ 資料夾中超過 10 天未訪問的所有檔案和空目錄

tmpwatch 10d /var/log/
2.刪除超過 X 天未修改的檔案

前文提到, tmpwatch 預設根據訪問時間來刪除檔案的,現在我們使用 -m 選項來根據檔案的修改時間(modification time)來刪除檔案。

例:刪除 /var/log/ 資料夾中超過 10 天未修改的檔案

tmpwatch -m 10d /var/log/

上面兩個命令中的 d 是時間引數,具體如下:

d - 天數
h - 小時
m - 分鐘
s - 秒數
預設時間引數是小時 。假如想刪除過去 10 個小時未修改的檔案,可以寫成下面這種形式:

tmpwatch -m 10 /var/log/
3. 刪除符號連結

可以使用 -s 選項刪除符號連結:

tmpwatch -s 10 /var/log/
4. 刪除所有檔案(包括常規檔案,符號連結和目錄)

tmpwatch 不僅僅可以刪普通檔案,還可以刪除一些特殊檔案,比如符號連結、目錄、管道檔案等等。這個情況下,需要使用 -a 選項:

tmpwatch -s 10 /var/log/
5. 刪除時排除目錄

如果不想刪除某個目錄,可以使用 --nodirs 選項,在刪除時排除對該目錄的刪除:

tmpwatch -am 10 --nodirs /var/log/
6. 測試刪除(不實際刪除任何內容)

這裡要再次強調,在對重要目錄進行檔案刪除時,不要急著使用 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 進行真正刪除。

7. 強制刪除

tmpwatch 預設不會刪除當前使用者沒有寫訪問權的檔案。但是如果你必須要刪除那些檔案,可以使用-f 選項進行強制刪除:

tmpwatch -f 10h /var/log/
8. 刪除時跳過某些檔案

若想在刪除時保留指定的檔案,也就是說列入白名單,可以使用 --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'.
設定 cron job 定期自動刪除檔案

(偷偷地告訴你,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/,如需轉載,請註明出處,否則將追究法律責任。

相關文章