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

nginx

How to install nginx on Centos Add nginx repo first. To add it, create the file...

Security tips for Linux server

1. Use only  strong passwords for all accounts , especially for root. Always use a secure root...

Backing up VPS from the inside

This guide will show you how to backup your vsp/container "from the inside vps". First of...

OpenVPN 2.3.6 on Centos 6

Install Epel repository rpm -Uvh...

Set hostname

Set host name on Centos: /etc/sysconfig/network   HOSTNAME="mycomputer"...