Backup failed - missing account avatars file?
-
What might be the issue with this? Is this some system file?
Backup failed: checkPreconditions errored with code 1 message Command failed: du -Dsb --exclude=.lock --exclude=dovecot.list.index.log. /home/yellowtent/appsdata/SOMEUUID du: cannot access '/home/yellowtent/appsdata/SOMEUUID/data/system/cache/accounts/avatars/111/730': No such file or directory . Logs are available
-
@dsp76 du has a behavior that if files disappear when it's computing disk space, it errors. In the above case, the app with id SOMEUUID seems to have deleted some file when du was busy calculating disk space In fact, the "--exclude=.lock --exclude=dovecot.list.index.log" hack is basically to make du skip log and lock files since they are transient and often cause du to error . In this case, I don't even know how to add an exclude since there is no extension or real filename... Maybe just ignore the error.
-
-
As du is slow and resource hungry, maybe use an alternative?
Diskus is a parallelized version: https://github.com/sharkdp/diskus, claims to be 5-10 times faster.
Though not in the repos -