📜  centos 6 vm.min_free_kbytes - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:15.148000             🧑  作者: Mango

代码示例1
# clear page cache (above type 2 and 3)
$ echo 1 > /proc/sys/vm/drop_caches

# clear slab cache (above type 4)
$ echo 2 > /proc/sys/vm/drop_caches

# clear page and slab cache (types 2,3,4)
$ echo 3 > /proc/sys/vm/drop_caches