Free Up RAM: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 77: Line 77:
{|
{|
| valign="top" |
| valign="top" |
* [https://www.hostbillo.com/blog/clear-ram-memory-cache-buffer-and-swap-space-on-linux-hostbillo/ Clear RAM Memory Cache, Buffer & Swap]
* [https://www.hostbillo.com/blog/clear-ram-memory-cache-buffer-and-swap-space-on-linux-hostbillo/ Linux » Free up RAM, Cache, Buffer & Swap]
* [https://unix.stackexchange.com/questions/706359/ <code>sync</code> » When & Why]
* [https://unix.stackexchange.com/questions/706359/ Linux » <code>sync</code> » When & Why]


| valign="top" |
| valign="top" |

Revision as of 22:09, 5 July 2024

🟢 Free Up » PageCache

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

🟡 Free Up » Swap Space

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

🟠 Free Up » Dentries & Inodes

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

🔴 Free Up » PageCache, Dentries & Inodes

echo 'sync;echo 3 >/proc/sys/vm/drop_caches'|sudo bash
echo 'sync;echo 3 >/proc/sys/vm/drop_caches && swapoff -a && swapon -a'|sudo bash

Playground

echo 'sync;echo 3 >/proc/sys/vm/drop_caches && swapoff -a && swapon -a'|sudo bash
free -th
echo 'apt update;apt list --upgradable;apt upgrade'|sudo bash
bottom

docker network prune -f
docker volume  prune -f
docker system  prune -f
docker image ls
cat <<'EXE' | bash
for d in system network volume
do docker ${d} prune -f;done
EXE
cat <<'EXE' | ssh [email protected]
for d in system network volume
do docker ${d} prune -f;done
EXE

References