systemd以前は、システムを再起動した場合にのみ/ tmpがクリーンアップされました。それから私はとても幸せでした。
systemdはこの数十年のデフォルト値を変更し、/ tmpが24時間ごとにクリーンアップされるようです。私は幸せではありません。
systemdを使用して、以前のplease-do-not-touch-my-/tmp-even-when-rebooting動作をどのように取得できますか?
ここで関連Q&Aを見ましたが、答えが複雑すぎました。
ベストアンサー1
これを/etc/rc.localに入れてください:
# disable the daily cleaning
systemctl disable systemd-tmpfiles-clean.timer
# make sure /tmp is cleaned now (might be superfluous, but what the heck?)
systemctl start systemd-tmpfiles-clean.service
rc.localを有効にします。
systemctl start rc-local.service