Clear swap in Centos

Print memory usage

[root@localhost]# free -m
             total       used       free     shared    buffers     cached
Mem:         15658      11521       4137          0         17       4398
-/+ buffers/cache:       7105       8553
Swap:         4095       3995        100

Clear swap (may take a time)

[root@localhost]# swapoff -a && swapon -a

Memory usage after swap clearing

[root@localhost]# free -m
             total       used       free     shared    buffers     cached
Mem:         15658      15490        168          0         21       4437
-/+ buffers/cache:      11030       4627
Swap:         4095          4       4091

 

Was this answer helpful?

 Print this Article

Also Read

Pptpd on Centos 6

How to install pptpd server on Centos 6 NOTE than pptpd is potentially unsecure and the tunnel...

Asteriks +TLS+RSTP Encrypt on centos

IN PROGRESS! this guide was gathered from official asteriks wikies...

Sendmail [25: Connection refused] fix

If you can't receive email from the outside and got next error:  (Delivery Status Notification...

Centos 6 Webserver

In this article we will install some software that is useful on a webserver based on...

Forward (redirect/nat) traffic with iptables

If you want to redirect/nat some traffic to IP 2.2.2.2 via IP 1.1.1.1, it simply can be done...