I noticed that Apple has not updated the exclusion list for a long time, which now appears outdated (based on the current structure of the operating system)
Try to compare the latest backups, you will notice that a myriad of short or very short-lived files are saved.
Perhaps only useful for forensic purposes
sudo tmutil listbackups | tail -2 | sed 's/.*/"&"/' | xargs sudo tmutil compare
My personal exclusion list has added these paths, and I saved a few hundred MB for each spin
/System/Library/AssetsV2/analytics (unified logs)
/private/var/db/diagnostics (unified logs)
/private/var/db/uuidtext (unified logs)
~/library/containers/com.apple.safari/data/library/caches (Safari cache)
~/Library/Containers/com.apple.Safari/Data/Library/WebKit (Safari cache)
and there remains a ton of analytics data in a myriad of paths and thousands of small files
any comments or contraindications are welcome
Try to compare the latest backups, you will notice that a myriad of short or very short-lived files are saved.
Perhaps only useful for forensic purposes
sudo tmutil listbackups | tail -2 | sed 's/.*/"&"/' | xargs sudo tmutil compare
My personal exclusion list has added these paths, and I saved a few hundred MB for each spin
/System/Library/AssetsV2/analytics (unified logs)
/private/var/db/diagnostics (unified logs)
/private/var/db/uuidtext (unified logs)
~/library/containers/com.apple.safari/data/library/caches (Safari cache)
~/Library/Containers/com.apple.Safari/Data/Library/WebKit (Safari cache)
and there remains a ton of analytics data in a myriad of paths and thousands of small files
any comments or contraindications are welcome