Answers for "setup size cache memory linux"

5

linux memory cache clear

# clear pagecache only.
sync; echo 1 > /proc/sys/vm/drop_caches

# clear dentries and inodes.
sync; echo 2 > /proc/sys/vm/drop_caches

# clear pagecache, dentries and inodes.
sync; echo 3 > /proc/sys/vm/drop_caches
Posted by: Guest on July-01-2020
0

ubuntu buffer/cache memory high

free && sync && echo 3 > /proc/sys/vm/drop_caches && free
Posted by: Guest on March-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language