Guide | How To How to Free up Unused Memory in Ubuntu/Linux Mint

The associated guide may contain user-generated or external content.

ExpLoID

New Member
Thread author
May 22, 2012
32
In this tutorial, we will see how to use the terminal to clean up unused memory that was not released properly after being used by your system. No need to use any third-party software, just a few commands will do the job pretty easily.

Check Memory Usage in Real-Time
You can check your current memory usage using this command:
watch -n 1 free -m

This command will also display in real-time your system memory usage:
watch -n 1 cat /proc/meminfo

Unused Memory
You can free up unused memory under Ubuntu/Linux Mint using this command:

sudo sysctl -w vm.drop_caches=3

NOTE: this action won't make your system faster nor it will affect its stability and performance, it will just clean up memory used by the Linux Kernel on caches.

Here is another command that can help you free up memory either used or cached (page cache, inodes, and dentries):
sudo sync && echo 3
sudo tee /proc/sys/vm/drop_caches

NOTE: You can use cron jobs to schedule the commands above to run at specific time intervals.
If you have more useful commands for releasing/flushing memory in Ubuntu/Linux Mint, use the comment form below.

Source :Leet Tips
 

About us

  • MalwareTips is a community-driven platform providing the latest information and resources on malware and cyber threats. Our team of experienced professionals and passionate volunteers work to keep the internet safe and secure. We provide accurate, up-to-date information and strive to build a strong and supportive community dedicated to cybersecurity.

User Menu

Follow us

Follow us on Facebook or Twitter to know first about the latest cybersecurity incidents and malware threats.

Top