USB플래시메모리나 SSD는 일반 하드 디스크에 비해 상대적으로 쓰기 속도가 느립니다.
그래서 디스크 쓰기를 줄이면 체감 속도가 빨라질 수 있습니다.
(참조 [url:336zy65t]http://www.linuxfoundation.org/news-media/blogs/browse/2009/03/ssd%E2%80%99s-journaling-and-noatimerelatime[/url:336zy65t], [url:336zy65t]http://beastie.cs.ua.edu/cs150/configuration.pdf[/url:336zy65t], [url:336zy65t]http://ubuntu.or.kr/viewtopic.php?p=35133#p35133[/url:336zy65t], [url:336zy65t]http://tombuntu.com/index.php/2008/09/04/four-tweaks-for-using-linux-with-solid-state-drives[/url:336zy65t], [url:336zy65t]http://starcubetech.blogspot.com/2008/10/ssd-optimization-on-ubuntu.html[/url:336zy65t])
-
저널링없는 파일 시스템을 사용.
Ext2로 포맷하여 설치하거나 ext4일 경우 저널링없이 사용.
저널링시스템인 ext3로는 포맷하지 말 것. -
리눅스를 스왑파티션 없이 설치.
-
디스크 마운트시 noatime 옵션 활용.
/etc/fstab을 열어서…
UUID=xxxxxx / ext4 relatime,errors=remount-ro 0 1 -> 이 부분을
UUID=xxxxxx / ext4 noatime,errors=remount-ro 0 1 -> 으로 relatime(또는 atime)을 noatime으로 변경. -
캐시에 ramdisk 사용.
/etc/fstab을 열어서…
tmpfs /tmp tmpfs defaults 0 0
tmpfs /var/tmp tmpfs defaults 0 0
를 추가. -
파이어폭스나 크롬에서 램캐시 사용. (4. 과정이 선행되어야 함)
5-1. 파이어폭스: 주소창에 about:config 입력 엔터하고… 우 클릭 후 new > string을 선택하고…
name 값에 browser.cache.disk.parent_directory를 입력하고 엔터… string 값에 /tmp를 입력하고 엔터.
5-2. 크롬: --disk-cache-dir="/tmp" 옵션으로 크롬실행.
예를 들면 /opt/google/chrome/google-chrome %U --disk-cache-dir="/tmp" 으로 주메뉴의 크롬 실행명령 변경