Free Up RAM

From Chorke Wiki
Revision as of 10:34, 2 July 2024 by Shahed (talk | contribs) (Created page with "==Free Up » PageCache== <syntaxhighlight lang="bash"> echo 'sync;echo 1>/proc/sys/vm/drop_caches'|sudo bash </syntaxhighlight> ==Free Up » Dentries and Inodes== <syntaxhighlight lang="bash"> echo 'sync;echo 2>/proc/sys/vm/drop_caches'|sudo bash </syntaxhighlight> ==Free Up » PageCache, Dentries, and Inodes== <syntaxhighlight lang="bash"> echo 'sync;echo 3>/proc/sys/vm/drop_caches'|sudo bash </syntaxhighlight> ==Free Up » Swap Space== <syntaxhighlight lang="bash">...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Free Up » PageCache

echo 'sync;echo 1>/proc/sys/vm/drop_caches'|sudo bash

Free Up » Dentries and Inodes

echo 'sync;echo 2>/proc/sys/vm/drop_caches'|sudo bash

Free Up » PageCache, Dentries, and Inodes

echo 'sync;echo 3>/proc/sys/vm/drop_caches'|sudo bash

Free Up » Swap Space

echo 'swapoff -a && swapon -a'|sudo bash