How to Clear CentOS cache data

Solved/Closed
satineeraj Posts 4 Registration date Friday 14 August 2020 Status Member Last seen 17 December 2022 - 28 May 2021 à 13:09
HelpiOS Posts 15569 Registration date Friday 30 October 2015 Status Moderator Last seen 2 July 2026 - 5 Jun 2021 à 18:42
I used CentOS so long on my current VPS and not change to another OS. I think there are some big cache files were created there and if that happened, I would like to Clear CentOS Cache Data to free up my storage for my VPS. What is the best way to clear CentOS cache data?
Related:

1 response

HelpiOS Posts 15569 Registration date Friday 30 October 2015 Status Moderator Last seen 2 July 2026 1,880
5 Jun 2021 à 18:42
Hi,

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