How does one refresh thumbnails in nautilus? In my videos folder I have some MKVs and only half of them have the movie border and a excerpt from the movie and the others (also MKVs encoded in the same way) just have the ordinary film icon.
(F5 doesnt do it.)
Updated for 14.04 LTS (or later)
From 12.10 onward, thumbnails are stored at
~/.cache/thumbnails
Corrected commands:
Then either restart, or:
Original answer: (for 12.04, and earlier)
Here the commands:
easier way just delete the failed to cache icons by deleting the following directory.
It will make nautilus to refresh only those thumbnails which currently have folder like thumbnail. It will not help if you want to refresh for file/folder which currently have any thumbnail.
Most of the time you should delete this then deleting all the thumbnails.
~/.thumbnails/fail
There is a hidden directory in your home called .thumbnails.
If you delete a file (or all) there, its thumbnail will be recreated by nautilus the next time that you visit the dir where it's stored.
I don't know if there is some more convenient way.
Edit: Nautilus will store the thumbnails in memory. You will need to close and start again Nautilus to force it to recreate them.
Easily force reloading the thumbnails by simply
touch
ing the file(s).Make sure you
cd
to the folder first.If you want more control on what you
touch
(eheh), just update the glob to taste, e.g.*.mkv
.No need to put your hands in automated configuration folders.
The problem often happens because the thumbnail manager is called as soon as the file is created, often fast enough that it is not completed yet. When creating (encoding videos, creating plots, merging documents, etc.) large files, the thumbnail manager may (try to) create the thumbnail (and fail) before the file is complete.
The command
touch
updates the 'last edit' time. The thumbnail manager finds the thumbnail to be obsolete (you 'edited' the file since it was last taken) and updates it.EXTRA: if you happen to need more control on the files (e.g. include subfolders, file patterns, etc.), you can use something like this:
do do not need to killall nautilus... after running rm -R ~/.thumbnails/fail simply pressing F5 while the desired nautilus window is active to force a reload.. otherwise it will reload next time you access said folder...
if its something your doing often... you can have it run automatically via cron https://help.ubuntu.com/community/CronHowto
Use this CLI script to quickly either overwrite or generate (in parallel) a large number of thumbnails.
If I get 10 votes, I will make this an apt-packaged utility.
On 14.04 and beyond
If this happens to you often you can automate the process on login by editing your
~/.profile
file with your favorite editor and adding the following code to the bottom of the file.The echo line is only there so that something exists in the failed thumbnail directory to avoid reporting an error at login. The next 2 lines just check for the existence of the failed thumbnail directory and if it exists, deletes the entire contents of that directory.
Sources: https://www.gnu.org/software/bash/manual/html_node/Bash-Startup-Files.html#Bash-Startup-Files
https://askubuntu.com/a/795098/225694
https://askubuntu.com/a/20122/225694
How to regenerate a specific thumbnail in Nautilus?
testing