What are alternatives to df command?

The `df` command is commonly used in Linux to report file system disk space usage. However, there are several alternatives to `df` that can provide similar information, often with additional features or different output formats. Below are some of those alternatives, including tools and commands that can help you monitor disk usage effectively.
df command alternatives, Linux disk usage tools, check disk space Linux

Alternatives to the `df` command

  • lsblk: List block devices, including mounted file systems.
  • du: Estimate file and directory space usage, useful for checking sizes of particular directories.
  • ncdu: A disk usage analyzer with an ncurses interface that makes it easy to navigate through file usage on your system.
  • findmnt: List mounted file systems and their mount points.
  • fdisk: List disk partitions and their sizes including used and free space.

Example Usage

lsblk -f

df command alternatives Linux disk usage tools check disk space Linux