$ systemctl cat systemd-tmpfiles-clean.service
# /lib/systemd/system/systemd-tmpfiles-clean.service
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
[Unit]
Description=Cleanup of Temporary Directories
Documentation=man:tmpfiles.d(5) man:systemd-tmpfiles(8)
DefaultDependencies=no
Conflicts=shutdown.target
After=local-fs.target time-sync.target
Before=shutdown.target
[Service]
Type=oneshot
ExecStart=/bin/systemd-tmpfiles --clean
IOSchedulingClass=idle
和
$ systemctl cat systemd-tmpfiles-clean.timer
# /lib/systemd/system/systemd-tmpfiles-clean.timer
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
[Unit]
Description=Daily Cleanup of Temporary Directories
Documentation=man:tmpfiles.d(5) man:systemd-tmpfiles(8)
[Timer]
OnBootSec=15min
OnUnitActiveSec=1d
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
# See tmpfiles.d(5) for details
# Clear tmp directories separately, to make them easier to override
D /tmp 1777 root root -
#q /var/tmp 1777 root root 30d
笔记!这个答案至少从 ubuntu 14.04 开始就已经过时了。查看当前情况的其他答案,如果它们被证明是正确的,那么就疯狂地投票。还发表评论,以便我可以在此处放置当前正确答案的链接。
对于 14.04,请参阅https://askubuntu.com/a/759048/1366
对于 16.10,请参阅https://askubuntu.com/a/857154/453746
2011年的旧答案:
清理
/tmp
工作由 upstart 脚本完成/etc/init/mounted-tmp.conf
。/tmp
每次挂载时,脚本都会由暴发户运行。实际上,这意味着在每次启动时。该脚本大致执行以下操作:如果文件
/tmp
超过$TMPTIME
几天,它将被删除。默认值为
$TMPTIME
0,表示其中的每个文件和目录都/tmp
将被删除。$TMPTIME
是在 中定义的环境变量/etc/default/rcS
。该目录在每次启动时默认清除,因为
TMPTIME
默认为 0。您可以在此处更改以下文件中的时间:
TMPTIME
表示几天内清除 tmp 目录的频率虽然该
/tmp
文件夹不是长期存储文件的地方,但有时您希望保存的时间比下次重新启动时长一点,这是 Ubuntu 系统的默认设置。我知道有一两次我/tmp
在测试期间下载了一些东西,在进行更改后重新启动,然后又丢失了原始数据。如果您想将/tmp
文件保留更长时间,则可以更改此设置。更改
/tmp
清理频率告诉您的系统
/tmp
在重新启动时清除的默认设置保存在/etc/default/rcS
文件中。我们要看的值是TMPTIME
。的当前值
TMPTIME=0
表示在重新启动时删除文件,尽管文件的年龄。将此值更改为不同的(正数)数字将更改文件可以存活的天数/tmp
。此设置将允许文件保留
/tmp
一周,然后在下次重新启动时将其删除。负数 (TMPTIME=-1
) 告诉系统永远不要删除/tmp
. 这可能不是您想要的,但可用。我正在 Ubuntu 16.10 上检查这个。我可以证明编辑 /etc/default/rcS 不再有任何效果,并且无论您在该文件中放入什么内容,tmp 中的文件都会被重新启动清除。正如其他人提到的,不再使用 tmpreaper 。
我认为正确的答案是 Ubuntu 16.10 有一个新设置。有一个文件夹 /etc/tmpfiles.d,记录在手册页“tmpfiles.d”中。在该文件夹中,应该放置一个配置文件来控制是否要删除 /tmp。这就是我正在做的事情,以阻止重新启动擦除 /tmp 中的文件,除非它们已经 20 天了:
如果您不想删除文件,请将“20d”替换为“-”。这是我最大的努力,该手册页的细节几乎无法理解。
新设置的优点是,即使系统没有重新启动,文件清理器仍然可以运行(如始终在线服务器的情况)。我认为这是一个很大的优势。
在 Ubuntu 14.04 中
tmpreaper
,这是由 cron 每天调用的(来自/etc/cron.daily
)。该程序可以通过/etc/default/rcS
和配置/etc/tmpreaper.conf
。在
systemd
Ubuntu(15.10 和更新版本)中,这是由 systemd 使用systemd-tmpfiles-clean
服务和计时器完成的:和
systemctl edit systemd-tmpfiles-clean.timer
您可以使用和使用各种 systemdTimer
配置选项来更改计时器行为本身(请参阅 参考资料man 5 systemd.timer
)。所以
systemd-tmpfiles-clean
在关机时运行,否则每天运行一次。它清理的文件可以使用(在另一个答案/etc/tmpfiles.d
中提到)进行扩展。有趣的是,默认
/etc/tmpfiles.d
为空。定义策略的文件在/tmp
这里:实际内容:
因此,如前所述,要覆盖它,您可以查看有关 tmpfiles.d 的其他答案。
14.04 之前:
每次重新启动时都会清理它。
在我们的一台运行 Ubuntu 的服务器上,我们有一个脚本来删除 /tmp 中的文件,它每晚运行。
脚本是:
只需将上面的内容保存到文件 chmod 775 该文件并创建一个 cron 条目来运行它。由于这是一个 Web 服务器,我们不想重新启动它,原因很明显。