From 9d4c591f1afa5b67ed64aaf7bf2517b2a95ce2b4 Mon Sep 17 00:00:00 2001 From: szaimen Date: Sat, 15 Oct 2022 00:48:52 +0200 Subject: [PATCH] add not to borg delete regarding freeing space Signed-off-by: szaimen --- readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/readme.md b/readme.md index bfc991be..0a11ecc8 100644 --- a/readme.md +++ b/readme.md @@ -270,6 +270,12 @@ sudo borg list "/mnt/backup/borg" # An example backup archive might be called 20220223_174237-nextcloud-aio # Then you can simply delete the archive with: sudo borg delete --stats --progress "/mnt/backup/borg::20220223_174237-nextcloud-aio" + +# If borg 1.2.0 or higher is installed, you then need to run borg compact in order to clean up the freed space +sudo borg version +# If version number of the command above is higher than 1.2.0 you need to run the command below: +sudo borg compact "/mnt/backup/" + ``` After doing so, make sure to update the backup archives list in the AIO interface!