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

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
-
How to Use Filter() on List in Python
Helpful python filter() examples that show you the usage of it on lists to filter out the True values.
-
JCL MSGCLASS Vs. MSGLEVEL Top Differences
The MSGCLASS and MSGLEVEL control the print of messages to the output listing. Here are the detailed meanings and default values.
-
20 Software Engineer Gift Ideas: From Gadgets to Games
Here are the top gift ideas for software developers that you can buy online for their marriages, birthdays, and other special occasions.
You must be logged in to post a comment.