VOOZH about

URL: https://www.tecmint.com/pydf-command-to-check-disk-usage/

⇱ Pydf - Show Colourised Filesystem Disk Space Usage in Linux


Skip to content

The “pydf” (Python Disk File System) is an advanced command line tool and a good alternative to the “df command”, which is used to display the amount of used and available disk space on a mounted filesystem, the same as df command, but in different colors. The output of the pydf command can be customizable according to your needs.

This “pydf” command is written in python language that displays the amount of disk usage and available space on Linux mounted file system, using custom colors for different file system types.

Installing pydf in Linux Systems

By default, the pydf tool is not installed on RHEL-based distributions such as CentOS, Fedora Rocky, and Alma Linux, you need to install it using the following commands.

# python3 -m venv pydf
# source pydf/bin/activate
# python3 -m pip install pydf
👁 Install Pydf in RHEL Systems
Install Pydf in RHEL Systems

On older versions of RHEL-based distributions, you need to enable the EPEL repository and install it using the yum command as shown.

# yum install pydf

On Debian/Ubuntu/Linux Mint

On Debian-based distributions, the pydf tool is availabe from the package manager, you can install it using apt-get or apt commands as shown.

$ sudo apt-get install pydf
OR
$ sudo apt install pydf
👁 Install Pydf in Debian Systems
Install Pydf in Debian Systems

On other Linux distributions, you can install pydf using the default package manager as shown.

$ sudo emerge -a app-admin/pydf [On Gentoo Linux]
$ sudo apk add pydf [On Alpine Linux]
$ sudo pacman -S pydf [On Arch Linux]
$ sudo zypper install pydf [On OpenSUSE] 

How to Use pydf Command in Linux

If you run only the “pydf” command without specifying an argument, it will display just information on disk space usage along with all mounted file systems.

# pydf
👁 pydf - Show File System Disk Usage
pydf – Show File System Disk Usage

To check which file system has 0 blocks, simply run the following command along with the “-a” or “--all” argument.

# pydf -a
👁 pydf - Show File System With 0 Blocks
pydf – Show File System With 0 Blocks

To see the output in human-readable format, use the option “-h", which will print sizes (e.g., 10K, 10M, 10G).

# pydf -h
👁 pydf - Show Disk Usage in Human-Readable Format
pydf – Show Disk Usage in Human-Readable Format

To print sizes in kilobytes (e.g., 1024 block size) use the option “-k” as shown below.

# pydf -k
👁 pydf - Show Disk Usage in Kilobytes
pydf – Show Disk Usage in Kilobytes

To print summary output in megabytes (e.g., 1048576 block size) use option “-m” as shown below.

# pydf -m
👁 pydf - Show Disk Usage in Megabytes
pydf – Show Disk Usage in Megabytes

To print sizes in gigabytes (e.g., 1073741824), specify the option “-g” as shown below.

# pydf -g
👁 pydf - Show Disk Usage in Gigabytes
pydf – Show Disk Usage in Gigabytes

To see the information about inodes instead of blocks, use the argument “-i” as given below.

# pydf -i

If you want to disable the colorized output, simply use the option “--bw“.

# pydf --bw

How to Customize pydf Colours

The pydf has its own configuration file, where you can define your own custom colors to give some extra feel and look to your output.

# vi /etc/pydfrc

For more information and usage, read the help page of the pydf by running “pydf –help” in a terminal.

# pydf --help
If this article helped, share it with someone on your team.
TecMint Weekly Newsletter
Get the Learn Linux 7 Days Crash Course free when you join 34,000+ Linux professionals reading every Thursday.
Check your email for a magic link to get started.
Something went wrong. Please try again.
TecMint has been free for 14 years. Help keep it that way.
Google AI Overviews and tools like ChatGPT have cut into search traffic for independent tech sites like TecMint. Running this site costs over $2,000 every month for hosting, infrastructure, and paying authors to keep the content accurate and tested.

If this article helped you solve a problem, consider buying a coffee. It helps keep TecMint free, supports the authors, and keeps the project going.
☕ Buy Me a Coffee
Ravi Saive
I'm Ravi Saive, an award-winning entrepreneur and founder of several successful 5-figure online businesses, including TecMint.com, GeeksMint.com, UbuntuMint.com, and the premium learning hub Pro.Tecmint.com.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

4 Comments

Leave a Reply
  1. Just friendly FYI, CentOS7 doesn’t recognize pydf.

    Reply
  2. Good alternate. Please let me know if this is supported on SUSE Linux

    Reply
    • @Haider,
      I never tried on SUSE, but I think it should work well…

      Reply
  3. Nice idea but you seem to have forgotten two specifics. Linux is NOT one or two particular distros and not all distros have the same things in their repositories. It would therefore be nice if you included the location of the sources or some way of manually installing it onto something other than a Red Hat or Ubuntu templated system.

    Reply

Got Something to Say? Join the Discussion... Cancel reply

Free Course
Get a free Linux course before you go.
Subscribe to TecMint Weekly and get the Learn Linux 7 Days Crash Course free. Read by 34,000+ Linux professionals every Thursday.
Check your email for a magic link to get started.