DeveloperBreeze

System Optimization Development Tutorials, Guides & Insights

Unlock 1+ expert-curated system optimization tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your system optimization skills on DeveloperBreeze.

How to Free Up Disk Space on Ubuntu: A Comprehensive Guide to Clearing System Cache and Unnecessary Files

Tutorial August 17, 2024
bash

sudo sync; sudo sysctl -w vm.drop_caches=3
  • sync: Writes any data buffered in memory out to disk.
  • vm.drop_caches=3: Clears the PageCache, dentries, and inodes.