1
2
3
4
5
6
7
8
9
10 | # Move /tmp to RAM # Paste this line in /etc/fstab: tmpfs /tmp tmpfs defaults,noexec,nosuid 0 0 # Move chromium-browser cache to /tmp # In /etc/chromium-browser/default # Change this: CHROMIUM_FLAGS="" # To this: CHROMIUM_FLAGS="--disk-cache-dir=/tmp/chromium --disk-cache-size=314572800" |