Mac OS X: Empty Trash (the hard way)
I just ran into a small Mac OS X Snow Leopard bug when I wanted to empty the trash. It gave me the -8003 error after the empty trash command in Finder. A quick search on Google teaches me that this is a Snow Leopard bug. So how to fix this issue?
- Open up the Terminal “Applications > Utilities > Terminal”
- Enter the command: “rm -rf ~/.Trash/*” (without the quotes of course)
- Hit enter
- The files are removed, if not you could execute this command again with “sudo” before it. This makes you a super user which has more rights to remove files. But be careful you could harm your Mac. The full command will look like this: “sudo rm -rf ~/.Trash/*”
Disclaimer: adevelopersblog.com posts are provided “as is”, without warranty of any kind, whether expressed or implied. adevelopersblog.com is also not responsible for any damage or loss of data. Always make sure you have a backup of all your data before using the information in this post.