System restore tool for Linux. Creates filesystem snapshots using rsync+hardlinks, or BTRFS snapshots. Supports scheduled snapshots, multiple backup levels, and exclude filters. Snapshots can be restored while system is running or from Live CD/USB.
Hello, I am unable to delete btrfs snapshots. When I try to remove them I get these errors.
------------------------------------------------------------------------------
Removing snapshot: 2021-09-24_18-16-10
Deleting subvolume: @ (Id:350)
E: ERROR: Not a Btrfs subvolume: Invalid argument
E: Failed to delete snapshot nested subvolume: '/run/timeshift/backup/timeshift-btrfs/snapshots/2021-09-24_18-16-10/@'
E: Failed to remove snapshot: 2021-09-24_18-16-10
------------------------------------------------------------------------------
However I am able to delete the manually by doing sudo btrfs subvol remove delete /run/timshift/backup/timeshift-btrfs/snapshots/2021-09-24_18-16-10/@ and then removing it from the gui.
Outputs that might be useful
Output of sudo btrfs subvol list /
ID 257 gen 24064 top level 5 path @home
ID 349 gen 24064 top level 5 path @
ID 350 gen 24032 top level 5 path timeshift-btrfs/snapshots/2021-09-24_18-16-10/@
Looks like you have nested subvolumes. Delete the inner subvolume with btrfs subvolume delete path-to-inner-subvol and try deleting the snapshot again.
Hello, I am unable to delete btrfs snapshots. When I try to remove them I get these errors.
However I am able to delete the manually by doing
sudo btrfs subvol remove delete /run/timshift/backup/timeshift-btrfs/snapshots/2021-09-24_18-16-10/@
and then removing it from the gui.Outputs that might be useful Output of
sudo btrfs subvol list /
Edit:
System:
Note: I am using btrfs on luks encryption.
Any help is appriciated, thank you.