How to Clear CentOS cache data
Solved/Closed
satineeraj
Posts
4
Registration date
Friday August 14, 2020
Status
Member
Last seen
December 17, 2022
-
May 28, 2021 at 01:09 PM
HelpiOS Posts 13881 Registration date Friday October 30, 2015 Status Moderator Last seen September 26, 2023 - Jun 5, 2021 at 06:42 PM
HelpiOS Posts 13881 Registration date Friday October 30, 2015 Status Moderator Last seen September 26, 2023 - Jun 5, 2021 at 06:42 PM
Related:
- How to Clear CentOS cache data
- Thunderbird clear cache - Guide
- Filezilla clear cache - Guide
- How to clear ram cache windows 10 cmd - Guide
- Clear bluetooth cache windows 10 - Guide
- Transfer data from one excel worksheet to another automatically - Guide
1 response
HelpiOS
Posts
13881
Registration date
Friday October 30, 2015
Status
Moderator
Last seen
September 26, 2023
1,887
Jun 5, 2021 at 06:42 PM
Jun 5, 2021 at 06:42 PM
Hi,
You can use the following commands to clear cache. The Linux system will not be interrupted.
You can use the following commands to clear cache. The Linux system will not be interrupted.
- Clear PageCache only :
# sync; echo 1 > /proc/sys/vm/drop_caches
- Clear dentries and inodes :
# sync; echo 2 > /proc/sys/vm/drop_caches
- Clear PageCache, dentries and inodes :
# sync; echo 3 > /proc/sys/vm/drop_caches