Clean memory and SWAP: Unterschied zwischen den Versionen

Aus WikiStar
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „<syntaxhighlight lang="bash" style="font-size:9pt;"> # clean memory cache free -m && sync && echo 3 > /proc/sys/vm/drop_caches && sync && free -m # clean SW…“)
 
(kein Unterschied)

Aktuelle Version vom 17. Juni 2014, 15:24 Uhr

# clean memory cache
free -m &&  sync &&  echo 3 > /proc/sys/vm/drop_caches && sync && free -m
 
# clean SWAP
swapoff -a && swapon -a