48

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.)

dv3500ea
  • 37,734
Will
  • 3,463

7 Answers7

47

Updated for 14.04 LTS (or later)

From 12.10 onward, thumbnails are stored at ~/.cache/thumbnails

Corrected commands:

rm -r ~/.cache/thumbnails

Then either restart, or:

killall nautilus

Original answer: (for 12.04, and earlier)

Here the commands:

rm -r  ~/.thumbnails
killall nautilus
david6
  • 14,528
  • 5
  • 38
  • 46
user8369
  • 486
19

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

Rahul Virpara
  • 11,860
Primefalcon
  • 453
  • 5
  • 2
11

Easily force reloading the thumbnails by simply touching the file(s).

touch *

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:

find . -name '*finished*.mkv' | while read f; do touch "$f"; done
Giuse
  • 111
10

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.

Javier Rivera
  • 35,434
5

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

Primefalcon
  • 453
  • 5
  • 2
2

Use this CLI script to quickly either overwrite or generate (in parallel) a large number of thumbnails.

usage: thumbnails.py [-h] [--overwrite] [--dotfiles] paths [paths ...]

A tool for generating Gnome thumbnails in parallel.

positional arguments:
  paths        The path(s) to thumbnail (typically one or more folders)

optional arguments:
  -h, --help   show this help message and exit
  --overwrite  Overwrite existing thumbnails.
  --dotfiles   Don't ignore directories prefixed with '.'

If I get 10 votes, I will make this an apt-packaged utility.

meawoppl
  • 1,054
0

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.

# dump failed thumbnails
echo tag > /home/"$USER"/.cache/thumbnails/fail/gnome-thumbnail-factory/tag
if [ -d /home/"$USER"/.cache/thumbnails/fail/gnome-thumbnail-factory ] ; then
rm /home/"$USER"/.cache/thumbnails/fail/gnome-thumbnail-factory/*

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

Elder Geek
  • 36,752