What information does the 'df -h /' command provide?

The df -h / command provides information about the disk space usage of the root filesystem (/). The -h option stands for "human-readable," which means the output will display sizes in a format that is easier to read (e.g., using KB, MB, or GB).

The output typically includes the following information:

  1. Filesystem: The name of the filesystem or disk partition.
  2. Size: The total size of the filesystem.
  3. Used: The amount of space that is currently used.
  4. Available: The amount of space that is still available for use.
  5. Use%: The percentage of the filesystem that is currently used.
  6. Mounted on: The mount point of the filesystem, which in this case will be /.

This command is useful for monitoring disk usage and ensuring that there is enough available space on the filesystem.

0 Comments

no data
Be the first to share your comment!