df (disk free) command is used to display disk usage of the file system. By default df command shows the file system usage in 1K blocks for all the current mounted file system, if you want to display the output of df command in human readable format , use -h option like “df -h”...
df command in Linux provides disk space usage information of your file systems. Even if you already know about this command, probably one of the examples mentioned below might be new to you. A sample output from df command is as follows: $ df Filesystem 1K-blocks Used Available Use% Mount...
Linux Commanddf 显示磁盘的相关信息 补充说明 df命令 用于显示磁盘分区上的可使用的磁盘空间。默认显示单位为KB。可以利用该命令来获取硬盘被占用了多少空间,目前还剩下多少空间等信息。 语法 df(选项)(参数) 选项 -a或--all:包含全部的文件系统; --block-size=<区块大小>:以指定的区块大小来显示区块数目; -...
This shall not be confused with knowing how much space this folder is actually taking from the system, as this information will not be given by the ‘df’ command but by the ‘du’ (disk usage) command. Still, this df option will actually give you an idea of how much space you have ...
11. Print only Specific Fields in the Output Conclusion Syntax of df command # df {options} {mount_point_of_filesystem} Options of df command : Sample Output of df [root@linux-world ~]# df Filesystem 1K-blocks Used Available Use% Mounted on ...
df command in linux df命令是Linux系统中一个非常常用的命令,用来显示文件系统的磁盘空间利用情况。通过df命令,我们可以查看当前系统中各个磁盘分区的使用情况,包括磁盘的总容量、已用容量、可用容量以及挂载点等信息。使用df命令可以帮助我们及时了解磁盘空间的使用情况,避免出现磁盘空间不足的情况。
In this tutorial, we covered how to displays information on the utilization of the system using the df command in the Linux operating system with available options and suitable examples. ← list files/directories Linux data duplicator →
This Linux tutorial explains how to use the Linux df command with syntax and arguments.NAME df - report file system disk space usage SYNOPSISdf [OPTION]... [FILE]... DESCRIPTION This manual page documents the GNU version of df. df displays the amount of disk space available on the ...
How To use df – Command Examples 1. Running df If we run the df command with no options, it will print out disk usage information for all mounted file systems. [root@centos7 ~]#dfFilesystem 1K-blocks Used Available Use% Mounted on ...
How to Check File System Disk Space Usage with Mounted Filesystem Type in Linux? If you would like to print filesystem types in the df command output, use-Toption. # df -hT Filesystem Type Size Used Avail Use% Mounted on /dev/vda1 xfs 80G 77G 3.2G 97% / devtmpfs devtmpfs 1.9G 0...