The Use of df (disk free) Command in Linux

The df command tells you the usage of memory details in the Linux system. An understanding of the output is useful for Linux developers. The outputs are Filesystem, 1K-blocks, Used, Available, use%, and mounted-on.

Here is the result of the df command

Here is the result of the df command

Filesystem

The filesystem tells you the device name on which the filesystem is stored. Here are the details on the Linux device.

1k-blocks

It tells the total memory available in Kilobytes.

Used

It tells you the used memory in bytes.

Available

It tells the available memory in bytes.

Use%

It tells the used memory in percentage.

Mounted-on

It is simply a directory that is created in the root directory.

Related posts

  • Tony Robbins Vocabulary: 50 Powerful Words and Phrases to Improve Your English

    Tony Robbins Vocabulary: 50 Powerful Words and Phrases to Improve Your English

    Learn 50 powerful Tony Robbins vocabulary words and phrases with simple meanings and example sentences to improve your English speaking skills


  • Migrating JSON Files from AWS S3 to PostgreSQL Using AWS Glue and PySpark

    Migrating JSON Files from AWS S3 to PostgreSQL Using AWS Glue and PySpark

    Migrating JSON files from AWS S3 to PostgreSQL using AWS Glue and PySpark is one of the most common data engineering challenges teams face today. In this guide, you will learn exactly how to build a production-grade AWS Glue JSON to PostgreSQL migration pipeline — from reading raw JSON files in S3 to writing clean,…


  • 5 PySpark Performance Anti-Patterns on Databricks (And How to Fix Them)

    5 PySpark Performance Anti-Patterns on Databricks (And How to Fix Them)

    Databricks makes scaling big data processing feel almost effortless. Under the hood, however, writing PySpark without understanding how Apache Spark and Delta Lake execute your code can quietly ruin performance, spike DBU costs, and cause out-of-memory (OOM) crashes. Below are 5 common PySpark anti-patterns seen in production, along with exact code fixes to keep your…


Discover more from Srinimf

Subscribe now to keep reading and get access to the full archive.

Continue reading