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

NFS on Centos 6

How to install NFS on Centos 6 yum install nfs-utils nfs-utils-lib Set nfs to start...

Cron

Cron is the daemon that can be used to schedule tasks according to time, day of the month,...

Centos 6 Webserver

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

OpenVPN 2.3.6 on Centos 6

Install Epel repository rpm -Uvh...

Changing ssh port

How to change ssh port. Open the file /etc/ssh/sshd_config with your favourite text...