如何使用 CLI 告诉 Timeshift 要保留多少个备份?

如何使用 CLI 告诉 Timeshift 要保留多少个备份?

Timeshift 的 GUI 版本提供了自动保留最后 X 个备份的功能:
https://raw.githubusercontent.com/teejee2008/timeshift/master/images/settings_schedule.png

据我所知,使用 CLI 没有这样的选项:
https://github.com/teejee2008/timeshift#readme
https://manpages.debian.org/testing/timeshift/timeshift.1.en.html

使用 CLI 有这样的选项吗?

答案1

您可以编辑该/etc/timeshift.json文件来设置这些值。这存储库中的 timeshift.json 文件显示这些值为默认值:

  "count_monthly" : "2",
  "count_weekly" : "3",
  "count_daily" : "5",
  "count_hourly" : "6",
  "count_boot" : "5"

PS:我发现这种方法来自问题#288在同一个 Github 存储库上。

相关内容