How to manually remove files from your PSP memory stick
Mounting your PSP to your computer via USB allows you to easily copy files onto the PSP’s memory stick. However, deleting files from the mounted PSP doesn’t always free up space on your memory stick.
I’ve discovered that deleting a file from a mounted PSP doesn’t actually remove it completely from the memory stick. Instead, it places the file in a hidden “Trashes” folder on the memory stick itself, and will continual to take up space on the memory stick.
Here’s how you can remove files from a mounted PSP without completely reformatting your memory stick (tested on mac OSX 10.4 & PSP firmware version 1.5):
- Mount your PSP to your computer.
- Launch the Terminal application (included with OSX)
- at the command line, type
cd ..and hit return to bring you to the/Usersdirectory. Typecd ..again to being you to the root of your machine. - type
cd Volumesto bring you to/Volumesdirectory. - type
ls -lto view the contents of this directory. If your PSP is mounted correctly, you should see a folder calledUntitled. - type
cd Untitledto navigate to the root of the memory stick. You can typels -lto view the contents of this directory, but you won’t be able to see hidden files. - type
cd .trashesto navigate into the.trasheshidden folder. Note that the period is required. - type
rm -R 501to completely remove the folder called501and all of its contents. Folder 501 is the default location for “deleted” memory stick files, and will automatically be created as needed.
That’s all there is to it. Re-mounting your PSP should now display the correct storage space, and won’t require re-formatting your memory stick.
I’ve found this helpful when you have large files that you are swapping and and out of your PSP, and need to quickly free up some storage space.
4 Comments
RSS feed for comments on this post.
I don’t have a PSP, but for you Windows folks out there, if you have the above problem the folder is a hidden folder on the root of the drive named “Recycled” and you should be able to browse to it by enabling the viewing of hidden files and folders by going to Tools>Folder Options>View and checking the box that says “Show Hidden Files and Folders”.
Just typing rm -R /Volumes/Untitled/.trashes/501 will do the trick.
@Matt Hall
You are absolutely right, that indeed does the trick. But for the benefit of others who may not know Terminal very well, I’ve spelled it out a bit.
Many thanks. Suddenly, I have all of this space that I thought was being used…obviously, it was just hidden.