tmpfs 마운트
/tmp 를 tmpfs로 마운트 해준다 (아직 안되어 있다면).
$ mount -t tmpfs -o noatime,mode=1777,size=1G tmpfs /tmp/
부팅시에도 마운팅 되도록 /etc/fstab에 다음을 넣어둔다.
tmpfs /tmp tmpfs defaults,noatime,mode=1777,size=1G 0 0
chrome – 구글 크롬
/tmp 에 캐쉬 디렉토리(/tmp/chrome-cache)를 하나 만들어 준다.
$ mkdir /tmp/chrome-cache
크롬 실행을 이렇게 하든지
$ google-chrome --disk-cache-dir="/tmp/chrome-cache/"
/usr/share/applications/google-chrome.desktop 파일의 내용중 Exec를 수정 해 준다.
Exec=/usr/bin/google-chrome-stable %U --disk-cache-dir="/tmp/chrome-cache/"
firefox – 파이어폭스
/tmp 에 캐쉬 디렉토리 생성(/tmp/firefox-cache).
주소창에 about:config 입력해서 설정으로 들어간 후에 “browser.cache.disk.parent_directory”로 새로운 string 변수를 만들고 값은 캐쉬 디렉토리(/tmp/firefox-cache)로 해 준다.
Leave a Reply