You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use borg to back up my laptop to a remote server over SSH. This works great, I've been using this for 4 years now and I'm still happy.
One issue I do have, is that the size of the backups on the remote server is getting bigger than I expect. I've been careful with the --exclude, but I still suspect that there might be some files/directories that are back upped that don't need to be (for example, big files like Linux ISO's, or some caches, ...). I would like to see what directories take up how much space (this can be unified across all backups). Using that info, I could then add the files to the exclude list, and possibly remove them from old backups.
On Linux, this is pretty easy: du -h / 2>/dev/null | sort -h; ideally, there would be a similar output, but then accross all archives of a repository, taking into account the deduplication
I use borg to back up my laptop to a remote server over SSH. This works great, I've been using this for 4 years now and I'm still happy.
One issue I do have, is that the size of the backups on the remote server is getting bigger than I expect. I've been careful with the --exclude, but I still suspect that there might be some files/directories that are back upped that don't need to be (for example, big files like Linux ISO's, or some caches, ...). I would like to see what directories take up how much space (this can be unified across all backups). Using that info, I could then add the files to the exclude list, and possibly remove them from old backups.
On Linux, this is pretty easy:
du -h / 2>/dev/null | sort -h
; ideally, there would be a similar output, but then accross all archives of a repository, taking into account the deduplicationThe text was updated successfully, but these errors were encountered: