Commit 82e05f

2026-01-31 04:02:55 Anonymous: clear memory 2
clear memory.md ..
@@ 1,6 1,6 @@
# Clear Memory
- =====How to Clear Cache in Linux?=====
+ ==How to Clear Cache in Linux?==
Every Linux System has three options to clear cache without interrupting any processes or services.
@@ 16,7 16,7 @@
<code>sync; echo 3 > /proc/sys/vm/drop_caches</code>
- ===Explanation of the above command.===
+ ==Explanation of the above command.==
sync will flush the file system buffer. Command Separated by “;” run sequentially. The shell waits for each command to terminate before executing the next command in the sequence. As mentioned in the kernel documentation, writing to drop_cache will clean cache without killing any application/service, command echo is doing the job of writing to file.
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9