MultiCS Kurulum & install - How to Clear Cache + Swap Space in Linux | MULTiCS & OSCam EXCHANGE TÜRKFORUM®

MultiCS Kurulum & install How to Clear Cache + Swap Space in Linux

abou ali

Active member
Katılım
19 Haz 2020
Mesajlar
36
Tepkime puanı
228
Puanları
33
Ofline
Have you ever have any process is eating away your memory and you want to clear it, Linux provides a way to flush or clear ram cache.

Every Linux System has three options to clear cache without interrupting any processes or services


1 = Clear PageCache only.
------------------------
sync; echo 1 > /proc/sys/vm/drop_caches


2 = Clear dentries and inodes.
-----------------------------
sync; echo 2 > /proc/sys/vm/drop_caches


3 = Clear PageCache, dentries and inodes.
-----------------------------------------
sync; echo 3 > /proc/sys/vm/drop_caches


4 = Clear swap space in linux.
------------------------------
swapoff -a && swapon -a
 
Üst