리눅스 buffer/cache 메모리 비우기

#!/bin/sh
sync
# pagecache
sysctl -w vm.drop_caches=1

# dentries + inodes
sync
sysctl -w vm.drop_caches=2

# pagecache + dentries + inodes
sync
sysctl -w vm.drop_caches=3
위로 스크롤