我想寻求帮助,以便为我的 chrome 浏览器的缓存创建 ramdisk。我知道该怎么做,但我不想让我的系统崩溃,因此我想请教更有经验的用户。:)
那么,我会怎么做:
1)编辑rc.local,然后添加以下内容:
mkdir /tmp/chrome
mount -t tmpfs -o size=4096M,mode=0744 tmpfs /tmp/chrome/
chmod 777 /tmp/chrome/ -R
2)然后:
rm -rf ~/.cache/google-chrome
ln -s /tmp/chrome/ ~/.cache/google-chrome
这是完成任务的正确方法吗?或者有更简单的解决方案吗?
谢谢!
答案1
解决方案:
1)向 fstab 添加新条目,例如:
# TMP
none /tmp tmpfs nodev,nosuid,noatime,mode=1777,size=4096M 0 0
这尺寸参数可以根据您的需要而不同。
2)编辑 Google Chrode .desktop 文件,然后在末尾添加执行=行如下:
--disk-cache-dir=/tmp/chromecache
3)保存,然后重新启动浏览器。