Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

Problem Loading Thumb Previews:

enter image description here

This started to happen after upgraded Ubuntu from 12.04 to 12.10.

share|improve this question

3 Answers

up vote 1 down vote accepted

Looks like the path has changed in recent versions. For me the issue in 13.04 was that ~/.cache/thumbnails was owned by root.

So for 13.04 at least, the command is:

sudo chown -R yourusername:yourusername ~/.cache/thumbnails

So Salem did have it-

share|improve this answer

I had the same issue.

I solved it by moving the .thumbnails folder and setting a symbolic link to .cache/thumbnails instead.

mv ~/.thumbnails ~/thumbnails
ln -s ~/.cache/thumbnails ~/.thumbnails

Is it possible that there were some changes?

It looks to me like the thumbnailers create their thumbnails in .cache/thumbnails, while nautilus keeps looking in .thumbnails.

share|improve this answer
Cheers Uh Rock Bro..!! It`s Working Thanks A Lotsss :)) – Vishnu Praneeth Reddy Nov 10 '12 at 9:45

Try executing this on a terminal:

sudo chown -R <user>:<user> ~/.thumbnails

replacing the two instances of <user> with your username. Then logout and login again.

share|improve this answer
How can I Find My Exact username? :( – Vishnu Praneeth Reddy Nov 4 '12 at 17:44
praneeth@praneeth-HP-Pavilion-dv7-Notebook-PC:~$ sudo chown -R praneeth:praneeth ~/.thumbnails [sudo] password for praneeth: chown: cannot access `/home/praneeth/.thumbnails': No such file or directory @salem Thanks For Reply :D – Vishnu Praneeth Reddy Nov 4 '12 at 17:46
ok, try creating the folder is missing: mkdir ~/.thumbnails, then logout/login. – Salem Nov 4 '12 at 17:50
i did :( but no change not worked :( – Vishnu Praneeth Reddy Nov 4 '12 at 18:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.