Clean memory and SWAP

Aus WikiStar
Wechseln zu: Navigation, Suche
# clean memory cache
free -m &&  sync &&  echo 3 > /proc/sys/vm/drop_caches && sync && free -m
 
# clean SWAP
swapoff -a && swapon -a