#Need to cancel in-progress backup
3 messages · Page 1 of 1 (latest)
delete the backup via cli? Should do the trick
you could filter search for big files, get the path and delete it
find . -xdev -type f -size +100M -print | xargs ls -lh | sort -k5,5 -h -r
that's the source for the command btw: https://linuxize.com/post/find-large-files-in-linux/