怎麼清除硬盤中的垃圾?不知道大家是否也跟我一樣,是一隻要把的自己電腦文件安排的條理有序,把沒用的文件會及時删掉的程序猿呢?如果是的話,那麼我們可以愉快地探讨下文章的内容如果不是的話,你也可以留下來湊湊熱鬧嘛(>-<),我來為大家科普一下關于怎麼清除硬盤中的垃圾?以下内容希望對你有幫助!
不知道大家是否也跟我一樣,是一隻要把的自己電腦文件安排的條理有序,把沒用的文件會及時删掉的程序猿呢?如果是的話,那麼我們可以愉快地探讨下文章的内容。如果不是的話,你也可以留下來湊湊熱鬧嘛(>-<)。
下面要介紹的是今天的主角—— tmpwatch ,它能幫助我們遞歸删除在給定時間内沒有訪問的文件和空目錄。
當然,我們也可以使用 find 命令查找并删除超過 x 天未訪問的文件,不過 tmpwatch 可以一步到位,何樂而不為?
tmpwatch 默認根據文件或目錄的訪問時間(access time)來決定删除哪些文件或目錄。除此之外,你還可以根據 inode 改變時間(inode change time)、修改時間(modification time)來進行操作。
通常,tmpwatch 用于删除 /tmp 目錄下的文件,以及其它地方其他無用的文件,如舊的日志文件。
重要警告!!
不要在 /(根目錄)中運行 tmpwatch!不要在 /(根目錄)中運行 tmpwatch!!不要在 /(根目錄)中運行 tmpwatch!!!(三遍警告! ^ - ^ )
/ 目錄包含 Linux 系統運行所必需的重要文件,而tmpwatch 并沒有内置保護機制防止在/ 目錄上運行,一旦那些重要的文件被删除了,後果不堪設想!所以,小夥伴們在使用這個命令的時候一定要慎重!
安裝 tmpwatch大多數 Linux 發行版的默認存儲庫中都提供 tmpwatch 的安裝:
在 Fedora 上:
$ sudo dnf install tmpwatch
在 CentOS 上:
$ sudo yum install tmpwatch
在 openSUSE 上:
$ sudo zypper install tmpwatch
在 Debian 及其衍生版本(如 Ubuntu )上,tmpwatch 又叫 tmpreaper:
$ sudo apt install 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 是時間參數,具體如下:
默認時間參數是小時** 。假如想删除過去 10 個小時未修改的文件,可以寫成下面這種形式:
tmpwatch -m 10 /var/log/
3. 删除符号鍊接
可以使用 -s 選項删除符号鍊接:
tmpwatch -s 10 /var/log/
4. 删除所有文件(包括常規文件,符号鍊接和目錄)
tmpwatch 不僅僅可以删普通文件,還可以删除一些特殊文件,比如符号鍊接、目錄、管道文件等等。這個情況下,需要使用 -a 選項:
tmpwatch -a 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'.
(偷偷地告訴你,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
更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!