Report this

What is the reason for this report?

How to free up swap if there is free RAM?

Posted on October 18, 2019

Hi all,

Does anyone know an easy way on how to free up my swap? I can see that there’s enough RAM available:

# free -m
              total        used        free      shared  buff/cache   available
Mem:            983         316          88           9         578         470
Swap:          1023         266         757

Thanks!



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hello,

I would usually use the following command:

swapoff -a && swapon -a &

The & sign at the end would start the process in the background, then I would run the following to watch how the data is being copied from the SWAP to RAM:

watch free -m

It is important to have enough RAM available before running this.

Hope that this helps! Regards, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.