Linux df Command

29/12/2020
There are plenty of tools out there that offer seamless methods of checking the disk space utilization. These tools are extremely useful in keeping your disk consumption at check. We may not feel like it but disk space is a valuable resource for our systems.

Linux is a legendary platform with a number of tools built-in within the ecosystem. Of course, there are other 3rd-party tools for checking the disk space utilization. However, there’s also a powerful built-in tool for doing the job – df.

The term “df” stands for “disk filesystem”. Using this tool, you can get a full summary of disk space usage of a particular filesystem. There plenty of scenarios where this can be useful. Let’s jump into the usage, tips, and tricks of “df”!

Location

Almost all the built-in tools are located under the “/usr/bin” directory. “df” is no exception.

which df

Filesystem disk usage

When we run “df” just by itself, it reports the present filesystems on the disk(s) along with other valuable information like their mount points, usage percentage, used and available space and the total number of blocks.

df

If you’re confused with the output, you can always add the “-h” flag. Essentially, this flag tells “df” to print the output in “human-readable” format.

df -h

Display info of all file systems

The previous command is, most of the times, going to be all you need to check out the disk usage of different filesystems. However, if there are dummy file systems present and you want their stats as well, there’s a different flag to use. For this purpose, pass the “-a” flag.

df -a

Again, for a human-readable format, add the “-h” flag.

df -ah

Or,

df -a -h

Disk usage of a specific filesystem

Are you just interested in one particular filesystem?

In the previous examples, “df” would show the disk usage of all the filesystems in the system. For checking out the disk usage of a specific filesystem, use the “-T” flag.

df -T /home

df -T /

I recommend using the “-h” flag for a better understanding of the output.

df -hT <filesystem>

Display result in MB/GB

Displaying the disk usage stats in MB (megabyte) format is quite helpful to many of us. If you want “df” to output the result in MB, just use the “-m” flag with whatever command you’re throwing at it.

df -m

As we can see, the output only shows numbers. These numbers are integers and represent the MB count of each file system.

However, when working with some BIG filesystems, the result in MB is going to be pretty much useless, right? In that case, we have the “-h” option. Yes, it’s the same “human-readable” flag we know and love.

df -h

The benefit is, it will show in GB if the size is too big; otherwise, it’ll show as MB or KB.

Inodes info

When running “df”, it doesn’t show the inode info of that filesystem. If you need the inode info, use the flag “-i”.

df -hi

File system type

Every single filesystem in the ecosystem of Linux has to have a certain type. In cases, the filesystem can be extremely crucial to determine the scope of performing a number of actions. For this purpose, use the “-T” flag.

df -T

Specific filesystems

Sometimes, you might want to check the condition of certain filesystems only. For example, how about just the info of all the ext4 filesystems? If your goal is something like that, then use the “-t” flag followed by the filesystem type.

For example, let’s check out the information of all the ext4.

df -at ext4

Here, “df” will report all the filesystems that match the type ext4.

To understand the output better, here’s how I like to modify the command.

df -aTt ext4

df -aTt tmpfs

Now, the filesystem type is noticeable and easily understandable of the effect of the “-t” flag.

Excluding certain filesystems

In the previous example, we only printed the information about a certain filesystem type, right? How about excluding a certain type and printing about every other filesystem? Yes, “df” also allows such operation. In this case, the flag is “-x” followed by the filesystem type to be excluded.

df -ax ext4

To understand the effect of this flag, use it with “-a” and “-T”.

df -aTx ext4

Local filesystems

If your system is highly modified and depends on remote filesystems as well, then “df” will also show all of them whenever you’re running any of these commands. If you want local and remote filesystems at the same time, then run the “df” commands as normal. However, if you’re interested in just the local filesystems, then just add the “-l” flag.

df -aTl

“df” version

This is just a trivial thing. If you’re interested in the version of “df”, run the following command.

df –version

As the output says, it’s a part of the GNU coreutils. So, any system with this toolkit will have “df” preinstalled.

Final thoughts

There’s not so much thing going on with “df”. It’s a really simplistic yet powerful tool that’s able to meet the needs of almost all the things anyone is about to do with their filesystems. If you’re interested in all the available options and in-depth guide, run the following commands.

df –help

man df

info df

Enjoy!

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Install TeamSpeak 3 Client 3.1.0 on Linux – Improved echo cancellation

TeamSpeak 3 is a secured voice enabled software that allows users to communicate between each other over the Internet or...
28/12/2020

How to install QupZilla 2.1.2 Lightweight Browser on Linux

QupZilla 2.1.2 recently released, is one of the new and very fast QtWebEngine browser released. The goal behind this browser...
28/12/2020

Install SQLite and SQLite Browser on Ubuntu 18.04 LTS

SQLite is a lightweight database software. It is a command line application. You must use the command line or SQLite API...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

Dịch Vụ Xây Dựng Hệ Thống Peering Với Internet Exchange (IXP)
04/04/2025

Dịch Vụ Triển Khai VPN Site-to-Site & Remote Access
04/04/2025

Dịch Vụ Thiết Lập Hệ Thống Tường Lửa (Firewall)
04/04/2025

Dịch Vụ Triển Khai Hệ Thống Ảo Hóa & Cloud
04/04/2025

Dịch Vụ Triển Khai Hệ Thống Ceph
04/04/2025