Mac OSX (Snow Leopard) Trash Permissions Issue
“This item will be deleted immediately”
Thanks to Nate Cinal (Core Training and Consulting), we were recently able to help one of our clients with a trash deleting issue in Mac OSX Snow Leopard.
The Issue
When deleting an item from the desktop, or any user folder, (either by dragging the item to the trash in the dock, or via the key command ⌘ + delete) the Finder would proclaim “Are you sure you want to delete (the file name here)” “This item will be deleted immediately, you can’t undo this action.”

So the Finder was basically treating all files as “network files,” and a simple permissions issue was the culprit. We aren’t sure how the permissions became corrupt, so I can’t give any advice on how to avoid the issue, but there is a simple fix.
- Log into Terminal (Applications > Utilities > Terminal)
- Type (make sure you don’t mistype while using “sudo”):
sudo chown $UID ~/.Trash
- You will then have to type in your password (the cursor will not move while you enter a password in Terminal). Make sure you type it correctly and hit return.
- Type:
chmod u+rwx ~/.Trash
- Quit Terminal
- Make a new folder on the desktop, (⌘ + shift + N) send it to the trash (⌘ + delete). See if everything is normal.
That’s it. Should be all fixed up.
A password caveat.

If you don’t have a login password on your user account, you must go into System Preferences and create one before you can use the sudo command in Terminal. If you would like, after you are done with Terminal, you can change your login password back to “nothing” (although I’d recommend leaving a login password on your user account).
*the use of the word “caveat” is accredited to Jared Fager, you must pay him a dollar if you use it.









(1) comments
On April 30, 2010 Susan Smart said:
That has been driving me nuts! I do love mac’s though. Thanks!