Linked Questions
31 questions linked to/from How do you empty the buffers and cache on a Linux system?
21 votes
2 answers
177k views
How to clear memory cache in Linux [duplicate]
Is there any command that by using I can clean the cache in RHEL? I used this command: sync; echo 3 > /proc/sys/vm/drop_caches but it didn't work.
10 votes
1 answer
8k views
What is equivalent to Mac's purge in Linux? [duplicate]
In Mac I use purge to free up some memory. What is equivalent to it in Linux(Ubuntu Server)? apt-get install purge gave me nothing. If you are no familiar with Mac's purge here is it's man page: ...
-1 votes
2 answers
6k views
Is there a way to free memory? [duplicate]
I remember, back from my days with Windows Vista/7, that there was a tool called memclear or memclean that would free some memory by invoking the NT garbage collection API. Probably it cleared cache ...
1 vote
0 answers
45 views
Cleaning cache (?) command du [duplicate]
Following this question I can reproduce that the first time I execute a du of a directory it takes longer than if I do it just after. Where is this caching happening? How can I clean it? I would like ...
111 votes
7 answers
139k views
Does rsync verify files copied between two local drives?
I want to make a fresh new copy of a large number of files from one local drive to another. I've read that rsync does a checksum comparison of files when sending them to a remote machine over a ...
132 votes
2 answers
304k views
Setting /proc/sys/vm/drop_caches to clear cache
As part of doing some cold cache timings, I'm trying to free the OS cache. The kernel documentation (retrieved January 2019) says: drop_caches Writing to this will cause the kernel to drop clean ...
57 votes
6 answers
9k views
How do I use swap space for emergencies only?
I have a Debian (Buster) laptop with 8 GB RAM and 16GB swap. I'm running a very long running task. This means my laptop has been left on for the past six days while it churns through. While doing ...
31 votes
3 answers
141k views
Memory runs full over time, high "buffer/cache" usage, low "available" memory
Whenever I reboot my laptop, everything runs amazingly and I have a maximum of 40% memory usage (out of 8GB). However over time (~ 1 day of usage), memory usage goes up to 90%+, and the system starts ...
20 votes
1 answer
65k views
"buff/cache" is very high, how I can free it? [duplicate]
The output of the top command shows that 29GB of memory is used by "buff/cache". What does it mean and how I can free it? It is near to 90% of memory.
13 votes
2 answers
5k views
Need something that is faster than "wc -l"
For a really big file like 1GB wc -l happens to be slow. Do we have a faster way calculating the number of newlines for a particular file?
33 votes
2 answers
3k views
Why did powering down my machine after a bad `rm` save my files?
Classical situation: I ran a bad rm and realized immediately afterwards that I had removed the wrong files. (Nothing critical and I had tolerably recent backups, but still annoying.) Knowing that ...
19 votes
2 answers
10k views
Linux: Total swap used = swap used by processes +?
So, I'm trying to do some investigation on where does swap use come from in a system with high swap usage: # free total used free shared buffers cached Mem: ...
7 votes
1 answer
20k views
What does -/+ buffers/cache means in the output of free? [closed]
I know this is a lame question, but I want to understand why CentOS consumes my Physical memory when certain process stopped. Suppose I have opened a file of 10GB then it consumes 10GB in ram and ...
8 votes
1 answer
7k views
List all files that are present in the cache
This question answers to the question on how to find the what is part of cache. However, in the fincore executable you have to pass the filename to check if it is part of cache. Is there a tools or a ...
1 vote
2 answers
9k views
Why doesn't Linux automatically clear caches?
Background My question is basically a follow-up to this question and answer, and in particular, this comment. Whenever I have to copy or rsync large amounts of files, the memory on my system tends ...