How to flush cache in Linux


Hello guys,

Me again with a very interesting problem. Today I was working on some tasks as usual and I discovered that something is wrong with one of our systems and the vehicles are not updated actively. Something went wrong with the MQTT connection and that’s how I arrived to write How I found a simple UI Viewer for InfluxDB article.

While I debugged the problem I observed that the server’s RAM memory is full, but guess what, the memory used was 489640 and free memory 359256 from a total of 4GB. That’s why I came with the great idea As you can see below, the buff/cache memory is above 3GB (3189056).

$ top

top - 13:42:55 up 168 days, 5:26, 1 user, load average: 0.00, 0.00, 0.00
Tasks: 109 total, 1 running, 67 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.3 us, 0.0 sy, 0.0 ni, 99.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st
KiB Mem : 4037952 total, 359256 free, 489640 used, 3189056 buff/cache
KiB Swap: 0 total, 0 free, 0 used. 3268392 avail Mem 

Check the cache memory

$ free -m

              total used free shared buff/cache available
Mem: 3943 503 365 1 3074 3167
Swap: 0 0 0

Clear the cache memory

$ sync; echo 3 | sudo tee /proc/sys/vm/drop_caches

Now you can check again the cache, and surprise

$ free -m

              total used free shared buff/cache available
Mem: 3943 505 3123 1 314 3206

And this is how it looks now my result of top command

$ top

top - 13:46:19 up 168 days, 5:29, 1 user, load average: 0.00, 0.00, 0.00
Tasks: 110 total, 1 running, 67 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.0 us, 0.2 sy, 0.0 ni, 99.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
KiB Mem : 4037952 total, 3196540 free, 517812 used, 323600 buff/cache
KiB Swap: 0 total, 0 free, 0 used. 3282840 avail Mem 

Automate this with a cronjob

I know that you’re lazy, so do I. Now let’s go back in business and create a Cronjob that automates this process for you.

$ crontab -e

A new text editor will open now, probably it’s VIM. All you have to do is to add at the end of file the following:

# m h dom mon dow command

0 2 * * * sync; echo 3 | sudo tee /proc/sys/vm/drop_caches

This cron will execute every day at 2am.

I hope you enjoyed this article, so if you consider this article great, hit the share button below and spread the word far away. If you have any mention, please tell me more in comments. Good suggestion will go directly in the article. å

Newsletter


Related Posts

Discover the Best Free AI Art Tools for Your Next Masterpiece

Explore a curated collection of the finest free AI art tools, designed to help you bring your artistic vision to life.

SaaS vs. Software Agency: Choosing the Right Business Model for Your Startup

Discover the key differences between SaaS and Software Agencies to make informed business decisions and stay ahead in the competitive market.

Top ChatGPT Prompts for Technical People and Startup Founders

Discover the ultimate list of ChatGPT prompts designed specifically for technical people and startup founders. Enhance your AI interactions and boost productivity with these powerful prompts. Revolutionize the way you work and stay ahead of the competition. Read now!

Chatbots for your website

Chatbots for your website

Discover the Power of Whatsapp-web.js for Safe and Easy Automation

Automate WhatsApp with ease using Whatsapp-web.js, a NodeJS client library that connects through the official WhatsApp Web app, reducing ban risks. Perfect for user or business accounts.

Revving Up Success: How to Validate Your Car Alert App Idea

Discover the keys to success in the car alert app market. Learn how to validate your business idea, ensuring your app sends timely alerts for document expirations and service checks.

Navigating the Food Delivery Fleet Management Landscape with ManagerLivrari

Discover Manager Livrari: Your all-in-one solution for streamlining food delivery fleet management. Automate calculations, generate weekly reports, and optimize your operations with ease.

Tools for Analyzing Your Competition

Before knowing where your business stands, you should look at the market and your competition. You need to know what marketing tactics and strategies are working for your audience, what traffic the competition has, and how they position.

Free Online Photo Editor with Cool Effects | Edit Images Easily

Transform your images with our free online photo editor with cool effects. Add filters, adjust colors, and apply creative enhancements. Edit your photos easily and make them stand out.

How to find the size of a table in SQL?

Learn how to determine the size of a SQL table with this informative guide. Discover efficient methods for measuring table size.