Time machine backups filled my 4TB external HD. To free space, I deleted a handful of the particular backups from:
/Volumes/Winston's 4TB/Backups.backupdb/
Those files ended up in the trash bin and trying to "empty" the trash bin erred indicating the folder was in use. So, I deleted the contents through terminal:
cd /Volumes/"Winston's 4TB"/.Trashes/
sudo rm -rf /501/2018-0*
Finder now shows the trash bin being empty, but the space has not been freed up on the drive. How do I recover that space?
rm
commands simply work, so either we don’t have the full story on how it was modified or that drive filesystem structure is broken and needs a repair or wipe so that emptying trash and calculating space work as designed. – bmike Sep 15 '18 at 22:13sudo rm
is not the proper route. There is atmutil
command designed for interacting with them, andtmutil delete
is what you would have wanted. Check out this answer. – Mike Williamson Jan 09 '19 at 19:54