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...
If you use desktop Linux this can be done through the regular file manager but a Linux user should know his/her command line and get the most of it, right? This is why you need to know and understand a little bit more of the ‘disk format’ or ‘df’ command. Using df command to...
df command in linux df命令是Linux系统中一个非常常用的命令,用来显示文件系统的磁盘空间利用情况。通过df命令,我们可以查看当前系统中各个磁盘分区的使用情况,包括磁盘的总容量、已用容量、可用容量以及挂载点等信息。使用df命令可以帮助我们及时了解磁盘空间的使用情况,避免出现磁盘空间不足的情况。 在Linux系统中,磁盘...
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 ...
This article explains how to get the full information on Linux disk space usage with the help of the ‘df‘ command with their practical examples. So, you could better understand the usage of thedf commandin Linux. 1. Check Linux Disk Space Usage ...
This article will teach you to check disk space with the df command in Linux and how to use df command with multiple options in Linux/Unix.
Linux中 du、df 和 free 以及它们的区别 一、du 命令格式:du [参数] [文件或目录名称] du用来显示每个文件或目录的磁盘使用空间,如果后边不跟目录或者文件,表示统计的是当前所在的目录的容量信息 常用参数如下: -h:以易读的容量格式(G/M)列出 -s:仅列出总容量 与df不同的是,du这个命令会到相应的目录中...
The df command displays the amount of disk space available on the filesystem with each file name's argument. For a good overview of the du command, read Tyler Carrigan's article Linux commands: du and the options you should be using. You might also be interested in my article Make du'...
As with all Linux commands, there are more options available than I care to cover here, so if you want a full look at them, check out the man page by running man df on your system. In the real world, df is often paired with the du command to help you get a complete understanding...