DeveloperBreeze

Usage Development Tutorials, Guides & Insights

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

How to view free space on a Linux server

Code August 11, 2024
bash

df -h
  • df: This command stands for "disk free" and reports the amount of disk space used and available on Linux filesystems.
  • -h: This option stands for "human-readable" format, which makes the output easier to read by showing sizes in KB, MB, GB, etc.