Should I remove this file in my terminal for better performance?
In a simpler explanation should I run:
cd
ls
rm -r .cache
for better performance?
My assumption is that it will have to compile less. Thank you!
I think this is the command you are looking for and do not use sudo here:
rm -r ~/.cache/*/*
It may ask you if you want to remove a write-protected file, if so, type n
and press Enter to proceed.
Alternatively, you could do this instead:
cd
ls -a
rm -r .cache/*/*
This may actually slow performance down as the cache is used to speed things up but it will free up some disk space.
~/.cache/google-chrome/Default/Cache
thanks! – mchid Nov 15 '15 at 20:09