A command that can be used on a Linux machine if you're running Gnome to delete the oldest image and movie thumbnails in your desktop's cache to reclaim disk space. I run this command once a month as a cronjob.
find ~/.thumbnails -type f -atime +7 -exec rm {} \;