I read about a configuration to load the directory ~/.cache/thumbnails/
to tmpfs
https://askubuntu.com/a/809084
With this lines in /etc/fstab
none /home/username/.cache/thumbnails tmpfs rw,noexec,nosuid,size=10%,uid=1000,gid=1000,mode=0755 0 0
But when I log in ubuntu it doesn't mount the directory automatically, I need to run mount
every time.
tmpfs
instead ofnone
, so eventually try changing that, – vanadium Jun 27 '19 at 13:13tmpfs /home/max/.cache/thumbnails tmpfs rw,noexec,nosuid,size=10%,uid=1001,gid=1002,mode=0755 0 0
– Jun 27 '19 at 16:00