如何自動刪除最舊的 BTRFS 快照?

如何自動刪除最舊的 BTRFS 快照?

在我看來,奇怪的是沒有簡單的腳本可以在達到磁碟配額後刪除最舊的 BTRFS 快照。它曾經是 BTRFS 工具系列的一部分,但現在不再是了。

由於我在 bash 方面不是那麼優秀的程式設計師 - 有誰知道如何檢查可用磁碟空間,如果它達到某個閾值,然後找到哪個是最舊的 BTRFS 快照並刪除它?非常感謝!

答案1

好吧,沒有答案,所以我希望我自己的解決方案能有所幫助:

#!/bin/bash

value=80  #Disk % threshold  - if disk full above, then oldest snapshots will be deleted until disk is below threshold

for i in 1 2 3 4 5 6 7 8 9
do
  echo Attempt: $i of 9
  echo Getting snapshot list...
  to=$(sudo btrfs subvol list /mnt/timeshift/backup/timeshift-btrfs/snapshots)
  search="snapshots"
  prefix=${to%%$search*}
  position=$(awk -v a="$to" -v b=$search 'BEGIN{print index(a,b)}')
  fn=$(echo $to | cut -c $(($position+10))-$(($position+28)))
  echo Oldest snapshot name: $fn 

  diskfull=$(df -hP / | awk '{print $5}' |tail -1|sed 's/%$//g')
  if [ $value -gt $diskfull ]; then
    echo Threshold $value% greater than Used disk $diskfull%
    echo should not delete any more snapshots
    echo Creating one more snapshot
    sudo timeshift --create --comments "automatic"
    exit 1
  else
    echo Threshold $value% is less than Used disk $diskfull%
    echo Deleting snapshot $fn...
    sudo timeshift --delete --snapshot "$fn"
    echo Waiting for changes to be written...
    sudo btrfs subvolume sync /
    echo Checking if disk space resolved...
    fi
done

相關內容